home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / man / cat1 / gcc.0 < prev    next >
Text File  |  1995-08-24  |  152KB  |  3,499 lines

  1.  
  2.  
  3.  
  4. GCC(1)                      GNU Tools                      GCC(1)
  5.  
  6.  
  7. NNAAMMEE
  8.        gcc, g++ - GNU project C and C++ Compiler (v2.6)
  9.  
  10. SSYYNNOOPPSSIISS
  11.        ggcccc [ _o_p_t_i_o_n | _f_i_l_e_n_a_m_e ]...
  12.        gg++++ [ _o_p_t_i_o_n | _f_i_l_e_n_a_m_e ]...
  13.  
  14. WWAARRNNIINNGG
  15.        The  information  in  this man page is an extract from the
  16.        full documentation of the GNU C compiler, and  is  limited
  17.        to the meaning of the options.
  18.  
  19.        This  man  page  is not kept up to date except when volun-
  20.        teers want to maintain it.   If  you  find  a  discrepancy
  21.        between  the  man  page and the software, please check the
  22.        Info file, which is the authoritative documentation.
  23.  
  24.        If we find that the things in this man page that  are  out
  25.        of date cause significant confusion or complaints, we will
  26.        stop distributing the man page.  The alternative, updating
  27.        the  man  page when we update the Info file, is impossible
  28.        because the rest of the work of maintaining GNU CC  leaves
  29.        us no time for that.  The GNU project regards man pages as
  30.        obsolete and should not let them take time away from other
  31.        things.
  32.  
  33.        For  complete and current documentation, refer to the Info
  34.        file `ggcccc' or the manual _U_s_i_n_g _a_n_d  _P_o_r_t_i_n_g  _G_N_U  _C_C  _(_f_o_r
  35.        _v_e_r_s_i_o_n  _2_._0_).  Both are made from the Texinfo source file
  36.        ggcccc..tteexxiinnffoo.
  37.  
  38. DDEESSCCRRIIPPTTIIOONN
  39.        The C and C++  compilers  are  integrated.   Both  process
  40.        input  files  through  one or more of four stages: prepro-
  41.        cessing, compilation, assembly, and linking.  Source file-
  42.        name suffixes identify the source language, but which name
  43.        you use for the compiler governs default assumptions:
  44.  
  45.        ggcccc    assumes preprocessed (..ii) files are C and assumes C
  46.               style linking.
  47.  
  48.        gg++++    assumes preprocessed (..ii) files are C++ and assumes
  49.               C++ style linking.
  50.  
  51.        Suffixes of source file names indicate  the  language  and
  52.        kind of processing to be done:
  53.  
  54.        ..cc    C source; preprocess, compile, assemble
  55.        ..CC    C++ source; preprocess, compile, assemble
  56.        ..cccc   C++ source; preprocess, compile, assemble
  57.        ..ccxxxx  C++ source; preprocess, compile, assemble
  58.        ..mm    Objective-C source; preprocess, compile, assemble
  59.        ..ii    preprocessed C; compile, assemble
  60.        ..iiii   preprocessed C++; compile, assemble
  61.  
  62.  
  63.  
  64. GNU Tools                   1993/10/13                          1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. GCC(1)                      GNU Tools                      GCC(1)
  71.  
  72.  
  73.        ..ss    Assembler source; assemble
  74.        ..SS    Assembler source; preprocess, assemble
  75.        ..hh    Preprocessor file; not usually named on command line
  76.  
  77.        Files  with other suffixes are passed to the linker.  Com-
  78.        mon cases include:
  79.  
  80.        ..oo    Object file
  81.        ..aa    Archive file
  82.  
  83.        Linking is always the last stage unless you use one of the
  84.        --cc,  --SS,  or --EE options to avoid it (or unless compilation
  85.        errors stop the whole process).  For the link  stage,  all
  86.        ..oo  files  corresponding  to  source  files, --ll libraries,
  87.        unrecognized filenames (including named  ..oo  object  files
  88.        and  ..aa archives) are passed to the linker in command-line
  89.        order.
  90.  
  91. OOPPTTIIOONNSS
  92.        Options must be separate: `--ddrr' is  quite  different  from
  93.        `--dd --rr '.
  94.  
  95.        Most `--ff' and `--WW' options have two contrary forms: --ff_n_a_m_e
  96.        and --ffnnoo--_n_a_m_e (or --WW_n_a_m_e and --WWnnoo--_n_a_m_e).   Only  the  non-
  97.        default forms are shown here.
  98.  
  99.        Here  is  a  summary  of all the options, grouped by type.
  100.        Explanations are in the following sections.
  101.  
  102.        OOvveerraallll OOppttiioonnss
  103.               -c -S -E -o _f_i_l_e -pipe -v -x _l_a_n_g_u_a_g_e
  104.  
  105.        LLaanngguuaaggee OOppttiioonnss
  106.               -ansi -fall-virtual -fcond-mismatch
  107.               -fdollars-in-identifiers -fenum-int-equiv
  108.               -fexternal-templates -fno-asm -fno-builtin
  109.               -fno-strict-prototype -fsigned-bitfields
  110.               -fsigned-char -fthis-is-variable
  111.               -funsigned-bitfields -funsigned-char
  112.               -fwritable-strings -traditional -traditional-cpp
  113.               -trigraphs
  114.  
  115.        WWaarrnniinngg OOppttiioonnss
  116.               -fsyntax-only -pedantic -pedantic-errors -w -W
  117.               -Wall -Waggregate-return -Wcast-align -Wcast-qual
  118.               -Wchar-subscript -Wcomment -Wconversion
  119.               -Wenum-clash -Werror -Wformat -Wid-clash-_l_e_n
  120.               -Wimplicit -Winline -Wmissing-prototypes
  121.               -Wmissing-declarations -Wnested-externs -Wno-import
  122.               -Wparentheses -Wpointer-arith -Wredundant-decls
  123.               -Wreturn-type -Wshadow -Wstrict-prototypes -Wswitch
  124.               -Wtemplate-debugging -Wtraditional -Wtrigraphs
  125.               -Wuninitialized -Wunused -Wwrite-strings
  126.  
  127.  
  128.  
  129.  
  130. GNU Tools                   1993/10/13                          2
  131.  
  132.  
  133.  
  134.  
  135.  
  136. GCC(1)                      GNU Tools                      GCC(1)
  137.  
  138.  
  139.        DDeebbuuggggiinngg OOppttiioonnss
  140.               -a -d_l_e_t_t_e_r_s -fpretend-float -g -g_l_e_v_e_l -gcoff
  141.               -gxcoff -gxcoff+ -gdwarf -gdwarf+ -gstabs -gstabs+
  142.               -ggdb -p -pg -save-temps -print-file-name=_l_i_b_r_a_r_y
  143.               -print-libgcc-file-name -print-prog-name=_p_r_o_g_r_a_m
  144.  
  145.        OOppttiimmiizzaattiioonn OOppttiioonnss
  146.               -fcaller-saves -fcse-follow-jumps -fcse-skip-blocks
  147.               -fdelayed-branch -felide-constructors
  148.               -fexpensive-optimizations -ffast-math -ffloat-store
  149.               -fforce-addr -fforce-mem -finline-functions
  150.               -fkeep-inline-functions -fmemoize-lookups
  151.               -fno-default-inline -fno-defer-pop
  152.               -fno-function-cse -fno-inline -fno-peephole
  153.               -fomit-frame-pointer -frerun-cse-after-loop
  154.               -fschedule-insns -fschedule-insns2
  155.               -fstrength-reduce -fthread-jumps -funroll-all-loops
  156.               -funroll-loops -O -O2
  157.  
  158.        PPrreepprroocceessssoorr OOppttiioonnss
  159.               -A_a_s_s_e_r_t_i_o_n -C -dD -dM -dN -D_m_a_c_r_o[=_d_e_f_n] -E -H
  160.               -idirafter _d_i_r -include _f_i_l_e -imacros _f_i_l_e -iprefix
  161.               _f_i_l_e -iwithprefix _d_i_r -M -MD -MM -MMD -nostdinc -P
  162.               -U_m_a_c_r_o -undef
  163.  
  164.        AAsssseemmbblleerr OOppttiioonn
  165.               -Wa,_o_p_t_i_o_n
  166.  
  167.        LLiinnkkeerr OOppttiioonnss
  168.               -l_l_i_b_r_a_r_y -nostartfiles -nostdlib -static -shared
  169.               -symbolic -Xlinker _o_p_t_i_o_n -Wl,_o_p_t_i_o_n -u _s_y_m_b_o_l
  170.  
  171.        DDiirreeccttoorryy OOppttiioonnss
  172.               -B_p_r_e_f_i_x -I_d_i_r -I- -L_d_i_r
  173.  
  174.        TTaarrggeett OOppttiioonnss
  175.               -b  _m_a_c_h_i_n_e -V _v_e_r_s_i_o_n
  176.  
  177.        CCoonnffiigguurraattiioonn DDeeppeennddeenntt OOppttiioonnss
  178.               _M_6_8_0_x_0 _O_p_t_i_o_n_s
  179.               -m68000 -m68020 -m68020-40 -m68030 -m68040 -m68881
  180.               -mbitfield -mc68000 -mc68020 -mfpa -mnobitfield
  181.               -mrtd -mshort -msoft-float
  182.  
  183.               _V_A_X _O_p_t_i_o_n_s
  184.               -mg -mgnu -munix
  185.  
  186.               _S_P_A_R_C _O_p_t_i_o_n_s
  187.               -mepilogue -mfpu -mhard-float -mno-fpu
  188.               -mno-epilogue -msoft-float -msparclite -mv8
  189.               -msupersparc -mcypress
  190.  
  191.               _C_o_n_v_e_x _O_p_t_i_o_n_s
  192.               -margcount -mc1 -mc2 -mnoargcount
  193.  
  194.  
  195.  
  196. GNU Tools                   1993/10/13                          3
  197.  
  198.  
  199.  
  200.  
  201.  
  202. GCC(1)                      GNU Tools                      GCC(1)
  203.  
  204.  
  205.               _A_M_D_2_9_K _O_p_t_i_o_n_s
  206.               -m29000 -m29050 -mbw -mdw -mkernel-registers
  207.               -mlarge -mnbw -mnodw -msmall -mstack-check
  208.               -muser-registers
  209.  
  210.               _M_8_8_K _O_p_t_i_o_n_s
  211.               -m88000 -m88100 -m88110 -mbig-pic
  212.               -mcheck-zero-division -mhandle-large-shift
  213.               -midentify-revision -mno-check-zero-division
  214.               -mno-ocs-debug-info -mno-ocs-frame-position
  215.               -mno-optimize-arg-area -mno-serialize-volatile
  216.               -mno-underscores -mocs-debug-info
  217.               -mocs-frame-position -moptimize-arg-area
  218.               -mserialize-volatile -mshort-data-_n_u_m -msvr3 -msvr4
  219.               -mtrap-large-shift -muse-div-instruction
  220.               -mversion-03.00 -mwarn-passed-structs
  221.  
  222.               _R_S_6_0_0_0 _O_p_t_i_o_n_s
  223.               -mfp-in-toc -mno-fop-in-toc
  224.  
  225.               _R_T _O_p_t_i_o_n_s
  226.               -mcall-lib-mul -mfp-arg-in-fpregs -mfp-arg-in-gregs
  227.               -mfull-fp-blocks -mhc-struct-return -min-line-mul
  228.               -mminimum-fp-blocks -mnohc-struct-return
  229.  
  230.               _M_I_P_S _O_p_t_i_o_n_s
  231.               -mcpu=_c_p_u _t_y_p_e -mips2 -mips3 -mint64 -mlong64
  232.               -mlonglong128 -mmips-as -mgas -mrnames -mno-rnames
  233.               -mgpopt -mno-gpopt -mstats -mno-stats -mmemcpy
  234.               -mno-memcpy -mno-mips-tfile -mmips-tfile
  235.               -msoft-float -mhard-float -mabicalls -mno-abicalls
  236.               -mhalf-pic -mno-half-pic -G _n_u_m -nocpp
  237.  
  238.               _i_3_8_6 _O_p_t_i_o_n_s
  239.               -m486 -mno-486 -msoft-float -mno-fp-ret-in-387
  240.  
  241.               _H_P_P_A _O_p_t_i_o_n_s
  242.               -mpa-risc-1-0 -mpa-risc-1-1 -mkernel -mshared-libs
  243.               -mno-shared-libs -mlong-calls -mdisable-fpregs
  244.               -mdisable-indexing -mtrailing-colon
  245.  
  246.               _i_9_6_0 _O_p_t_i_o_n_s
  247.               -m_c_p_u_-_t_y_p_e -mnumerics -msoft-float
  248.               -mleaf-procedures -mno-leaf-procedures -mtail-call
  249.               -mno-tail-call -mcomplex-addr -mno-complex-addr
  250.               -mcode-align -mno-code-align -mic-compat
  251.               -mic2.0-compat -mic3.0-compat -masm-compat
  252.               -mintel-asm -mstrict-align -mno-strict-align
  253.               -mold-align -mno-old-align
  254.  
  255.               _D_E_C _A_l_p_h_a _O_p_t_i_o_n_s
  256.               -mfp-regs -mno-fp-regs -mno-soft-float -msoft-float
  257.  
  258.               _S_y_s_t_e_m _V _O_p_t_i_o_n_s
  259.  
  260.  
  261.  
  262. GNU Tools                   1993/10/13                          4
  263.  
  264.  
  265.  
  266.  
  267.  
  268. GCC(1)                      GNU Tools                      GCC(1)
  269.  
  270.  
  271.               -G -Qy -Qn -YP,_p_a_t_h_s -Ym,_d_i_r
  272.  
  273.        CCooddee GGeenneerraattiioonn OOppttiioonnss
  274.               -fcall-saved-_r_e_g -fcall-used-_r_e_g -ffixed-_r_e_g
  275.               -finhibit-size-directive -fnonnull-objects
  276.               -fno-common -fno-ident -fno-gnu-linker
  277.               -fpcc-struct-return -fpic -fPIC
  278.               -freg-struct-returno -fshared-data -fshort-enums
  279.               -fshort-double -fvolatile -fvolatile-global
  280.               -fverbose-asm
  281.  
  282. OOVVEERRAALLLL OOPPTTIIOONNSS
  283.        --xx _l_a_n_g_u_a_g_e
  284.               Specify explicitly the _l_a_n_g_u_a_g_e for  the  following
  285.               input  files  (rather than choosing a default based
  286.               on the file name suffix) .  This option applies  to
  287.               all  following  input files until the next `--xx' op-
  288.               tion.   Possible  values  of  _l_a_n_g_u_a_g_e   are   `cc',
  289.               `oobbjjeeccttiivvee--cc',   `cc--hheeaaddeerr',  `cc++++',  `ccpppp--oouuttppuutt',
  290.               `aasssseemmbblleerr', and `aasssseemmbblleerr--wwiitthh--ccpppp'.
  291.  
  292.        --xx nnoonnee
  293.               Turn off any specification of a language,  so  that
  294.               subsequent  files  are  handled  according to their
  295.               file name suffixes (as they are  if  `--xx'  has  not
  296.               been used at all).
  297.  
  298.        If you want only some of the four stages (preprocess, com-
  299.        pile, assemble, link), you can use `--xx' (or filename  suf-
  300.        fixes)  to tell ggcccc where to start, and one of the options
  301.        `--cc', `--SS', or `--EE' to say where ggcccc  is  to  stop.   Note
  302.        that  some  combinations (for example, `--xx ccpppp--oouuttppuutt --EE')
  303.        instruct ggcccc to do nothing at all.
  304.  
  305.        --cc     Compile or assemble the source files,  but  do  not
  306.               link.  The compiler output is an object file corre-
  307.               sponding to each source file.
  308.  
  309.               By default, GCC makes the object file  name  for  a
  310.               source  file  by  replacing  the suffix `..cc', `..ii',
  311.               `..ss', etc., with `..oo'.  Use --oo  to  select  another
  312.               name.
  313.  
  314.               GCC  ignores  any  unrecognized  input files (those
  315.               that do not require compilation or  assembly)  with
  316.               the --cc option.
  317.  
  318.        --SS     Stop  after the stage of compilation proper; do not
  319.               assemble.  The output is an assembler code file for
  320.               each non-assembler input file specified.
  321.  
  322.               By default, GCC makes the assembler file name for a
  323.               source file by replacing  the  suffix  `..cc',  `..ii',
  324.               etc., with `..ss'.  Use --oo to select another name.
  325.  
  326.  
  327.  
  328. GNU Tools                   1993/10/13                          5
  329.  
  330.  
  331.  
  332.  
  333.  
  334. GCC(1)                      GNU Tools                      GCC(1)
  335.  
  336.  
  337.               GCC ignores any input files that don't require com-
  338.               pilation.
  339.  
  340.        --EE     Stop after the preprocessing stage; do not run  the
  341.               compiler proper.  The output is preprocessed source
  342.               code, which is sent to the standard output.
  343.  
  344.               GCC ignores input files which don't require prepro-
  345.               cessing.
  346.  
  347.        --oo _f_i_l_e
  348.               Place output in file _f_i_l_e.  This applies regardless
  349.               to  whatever  sort  of  output  GCC  is  producing,
  350.               whether  it  be an executable file, an object file,
  351.               an assembler file or preprocessed C code.
  352.  
  353.               Since only one output file  can  be  specified,  it
  354.               does not make sense to use `--oo' when compiling more
  355.               than one input file, unless you  are  producing  an
  356.               executable file as output.
  357.  
  358.               If  you  do not specify `--oo', the default is to put
  359.               an executable file in `aa..oouutt', the object file  for
  360.               `_s_o_u_r_c_e.._s_u_f_f_i_x'  in  `_s_o_u_r_c_e..oo', its assembler file
  361.               in `_s_o_u_r_c_e..ss', and all  preprocessed  C  source  on
  362.               standard output.
  363.  
  364.        --vv     Print  (on standard error output) the commands exe-
  365.               cuted to run the stages of compilation.  Also print
  366.               the  version  number of the compiler driver program
  367.               and of the preprocessor and the compiler proper.
  368.  
  369.        --ppiippee  Use pipes rather than temporary files for  communi-
  370.               cation  between  the various stages of compilation.
  371.               This fails to work on some systems where the assem-
  372.               bler cannot read from a pipe; but the GNU assembler
  373.               has no trouble.
  374.  
  375.  
  376. LLAANNGGUUAAGGEE OOPPTTIIOONNSS
  377.        The following options control the dialect of  C  that  the
  378.        compiler accepts:
  379.  
  380.        --aannssii  Support all ANSI standard C programs.
  381.  
  382.               This  turns  off certain features of GNU C that are
  383.               incompatible with ANSI C, such as the  aassmm,  iinnlliinnee
  384.               and  ttyyppeeooff keywords, and predefined macros such as
  385.               uunniixx and vvaaxx that identify the type of  system  you
  386.               are  using.   It  also  enables the undesirable and
  387.               rarely used ANSI trigraph  feature,  and  disallows
  388.               `$$' as part of identifiers.
  389.  
  390.               The   alternate  keywords  ____aassmm____,  ____eexxtteennssiioonn____,
  391.  
  392.  
  393.  
  394. GNU Tools                   1993/10/13                          6
  395.  
  396.  
  397.  
  398.  
  399.  
  400. GCC(1)                      GNU Tools                      GCC(1)
  401.  
  402.  
  403.               ____iinnlliinnee____ and ____ttyyppeeooff____ continue to work  despite
  404.               `--aannssii'.  You would not want to use them in an ANSI
  405.               C program, of course, but it is useful to put  them
  406.               in  header files that might be included in compila-
  407.               tions  done  with  `--aannssii'.   Alternate  predefined
  408.               macros such as ____uunniixx____ and ____vvaaxx____ are also avail-
  409.               able, with or without `--aannssii'.
  410.  
  411.               The `--aannssii' option does not cause non-ANSI programs
  412.               to be rejected gratuitously.  For that, `--ppeeddaannttiicc'
  413.               is required in addition to `--aannssii'.
  414.  
  415.               The preprocessor predefines a macro ____SSTTRRIICCTT__AANNSSII____
  416.               when you use the `--aannssii' option.  Some header files
  417.               may notice this macro and  refrain  from  declaring
  418.               certain  functions  or defining certain macros that
  419.               the ANSI standard doesn't  call  for;  this  is  to
  420.               avoid  interfering with any programs that might use
  421.               these names for other things.
  422.  
  423.        --ffnnoo--aassmm
  424.               Do not recognize aassmm, iinnlliinnee or ttyyppeeooff  as  a  key-
  425.               word.  These words may then be used as identifiers.
  426.               You can use ____aassmm____, ____iinnlliinnee____ and ____ttyyppeeooff____  in-
  427.               stead.  `--aannssii' implies `--ffnnoo--aassmm'.
  428.  
  429.        --ffnnoo--bbuuiillttiinn
  430.               Don't  recognize built-in functions that do not be-
  431.               gin with two leading underscores.   Currently,  the
  432.               functions affected include __eexxiitt, aabboorrtt, aabbss, aalllloo--
  433.               ccaa, ccooss, eexxiitt, ffaabbss,  llaabbss,  mmeemmccmmpp,  mmeemmccppyy,  ssiinn,
  434.               ssqqrrtt, ssttrrccmmpp, ssttrrccppyy, and ssttrrlleenn.
  435.  
  436.               The  `--aannssii'  option prevents aallllooccaa and __eexxiitt from
  437.               being builtin functions.
  438.  
  439.        --ffnnoo--ssttrriicctt--pprroottoottyyppee
  440.               Treat a function  declaration  with  no  arguments,
  441.               such as `iinntt ffoooo ();', as C would treat it--as say-
  442.               ing nothing about the number of arguments or  their
  443.               types  (C++ only).  Normally, such a declaration in
  444.               C++ means that the function ffoooo takes no arguments.
  445.  
  446.        --ttrriiggrraapphhss
  447.               Support  ANSI  C trigraphs.  The `--aannssii' option im-
  448.               plies `--ttrriiggrraapphhss'.
  449.  
  450.        --ttrraaddiittiioonnaall
  451.               Attempt to support some aspects  of  traditional  C
  452.               compilers.   For details, see the GNU C Manual; the
  453.               duplicate list here has been  deleted  so  that  we
  454.               won't get complaints when it is out of date.
  455.  
  456.               But  one  note  about  C++  programs  only (not C).
  457.  
  458.  
  459.  
  460. GNU Tools                   1993/10/13                          7
  461.  
  462.  
  463.  
  464.  
  465.  
  466. GCC(1)                      GNU Tools                      GCC(1)
  467.  
  468.  
  469.               `--ttrraaddiittiioonnaall' has one additional effect  for  C++:
  470.               assignment  to tthhiiss is permitted.  This is the same
  471.               as the effect of `--fftthhiiss--iiss--vvaarriiaabbllee'.
  472.  
  473.        --ttrraaddiittiioonnaall--ccpppp
  474.               Attempt to support some aspects  of  traditional  C
  475.               preprocessors.    This   includes  the  items  that
  476.               specifically mention the  preprocessor  above,  but
  477.               none of the other effects of `--ttrraaddiittiioonnaall'.
  478.  
  479.        --ffddoollllaarrss--iinn--iiddeennttiiffiieerrss
  480.               Permit  the  use  of `$$' in identifiers (C++ only).
  481.               You can also use  `--ffnnoo--ddoollllaarrss--iinn--iiddeennttiiffiieerrss'  to
  482.               explicitly  prohibit  use  of `$$'.  (GNU C++ allows
  483.               `$$' by default on some target systems but not  oth-
  484.               ers.)
  485.  
  486.        --ffeennuumm--iinntt--eeqquuiivv
  487.               Permit  implicit  conversion  of iinntt to enumeration
  488.               types (C++ only).  Normally GNU C++ allows  conver-
  489.               sion  of eennuumm to iinntt, but not the other way around.
  490.  
  491.        --ffeexxtteerrnnaall--tteemmppllaatteess
  492.               Produce smaller code for template declarations,  by
  493.               generating  only  a  single  copy  of each template
  494.               function where it is defined (C++  only).   To  use
  495.               this  option  successfully,  you must also mark all
  496.               files  that  use  templates  with  either  `##pprraaggmmaa
  497.               iimmpplleemmeennttaattiioonn'   (the   definition)   or  `##pprraaggmmaa
  498.               iinntteerrffaaccee' (declarations).
  499.  
  500.               When     your     code     is     compiled     with
  501.               `--ffeexxtteerrnnaall--tteemmppllaatteess', all template instantiations
  502.               are external.  You must arrange for  all  necessary
  503.               instantiations  to  appear  in  the  implementation
  504.               file; you can do this with a  ttyyppeeddeeff  that  refer-
  505.               ences  each instantiation needed.  Conversely, when
  506.               you    compile    using    the    default    option
  507.               `--ffnnoo--eexxtteerrnnaall--tteemmppllaatteess',  all template instantia-
  508.               tions are explicitly internal.
  509.  
  510.        --ffaallll--vviirrttuuaall
  511.               Treat all possible member functions as virtual, im-
  512.               plicitly.   All  member  functions (except for con-
  513.               structor functions and nneeww or ddeelleettee member  opera-
  514.               tors) are treated as virtual functions of the class
  515.               where they appear.
  516.  
  517.               This does not mean that all calls to  these  member
  518.               functions  will  be made through the internal table
  519.               of virtual functions.   Under  some  circumstances,
  520.               the  compiler  can determine that a call to a given
  521.               virtual function can be  made  directly;  in  these
  522.               cases the calls are direct in any case.
  523.  
  524.  
  525.  
  526. GNU Tools                   1993/10/13                          8
  527.  
  528.  
  529.  
  530.  
  531.  
  532. GCC(1)                      GNU Tools                      GCC(1)
  533.  
  534.  
  535.        --ffccoonndd--mmiissmmaattcchh
  536.               Allow conditional expressions with mismatched types
  537.               in the second and third arguments.   The  value  of
  538.               such an expression is void.
  539.  
  540.        --fftthhiiss--iiss--vvaarriiaabbllee
  541.               Permit assignment to tthhiiss (C++ only).  The incorpo-
  542.               ration of user-defined free store  management  into
  543.               C++  has  made assignment to `tthhiiss' an anachronism.
  544.               Therefore, by default it is invalid  to  assign  to
  545.               tthhiiss  within a class member function.  However, for
  546.               backwards compatibility, you can make it valid with
  547.               `--fftthhiiss--iiss--vvaarriiaabbllee'.
  548.  
  549.        --ffuunnssiiggnneedd--cchhaarr
  550.               Let  the type cchhaarr be unsigned, like uunnssiiggnneedd cchhaarr.
  551.  
  552.               Each kind of machine has a default  for  what  cchhaarr
  553.               should  be.  It is either like uunnssiiggnneedd cchhaarr by de-
  554.               fault or like ssiiggnneedd cchhaarr by default.
  555.  
  556.               Ideally,  a  portable  program  should  always  use
  557.               ssiiggnneedd cchhaarr or uunnssiiggnneedd cchhaarr when it depends on the
  558.               signedness of an object.  But  many  programs  have
  559.               been  written to use plain cchhaarr and expect it to be
  560.               signed, or expect it to be unsigned,  depending  on
  561.               the  machines  they were written for.  This option,
  562.               and its inverse, let you make such a  program  work
  563.               with the opposite default.
  564.  
  565.               The  type  cchhaarr is always a distinct type from each
  566.               of ssiiggnneedd cchhaarr and uunnssiiggnneedd cchhaarr, even  though  its
  567.               behavior is always just like one of those two.
  568.  
  569.        --ffssiiggnneedd--cchhaarr
  570.               Let the type cchhaarr be signed, like ssiiggnneedd cchhaarr.
  571.  
  572.               Note     that     this     is     equivalent     to
  573.               `--ffnnoo--uunnssiiggnneedd--cchhaarr', which is the negative form of
  574.               `--ffuunnssiiggnneedd--cchhaarr'.  Likewise, `--ffnnoo--ssiiggnneedd--cchhaarr' is
  575.               equivalent to `--ffuunnssiiggnneedd--cchhaarr'.
  576.  
  577.        --ffssiiggnneedd--bbiittffiieellddss
  578.  
  579.        --ffuunnssiiggnneedd--bbiittffiieellddss
  580.  
  581.        --ffnnoo--ssiiggnneedd--bbiittffiieellddss
  582.  
  583.        --ffnnoo--uunnssiiggnneedd--bbiittffiieellddss
  584.               These options control whether a bitfield is  signed
  585.               or   unsigned,   when  declared  with  no  explicit
  586.               `ssiiggnneedd' or `uunnssiiggnneedd' qualifier.  By default, such
  587.               a  bitfield  is signed, because this is consistent:
  588.               the basic integer types  such  as  iinntt  are  signed
  589.  
  590.  
  591.  
  592. GNU Tools                   1993/10/13                          9
  593.  
  594.  
  595.  
  596.  
  597.  
  598. GCC(1)                      GNU Tools                      GCC(1)
  599.  
  600.  
  601.               types.
  602.  
  603.               However, when you specify `--ttrraaddiittiioonnaall', bitfields
  604.               are all unsigned no matter what.
  605.  
  606.        --ffwwrriittaabbllee--ssttrriinnggss
  607.               Store string constants in the writable data segment
  608.               and don't uniquize them.  This is for compatibility
  609.               with old programs which assume they can write  into
  610.               string constants.  `--ttrraaddiittiioonnaall' also has this ef-
  611.               fect.
  612.  
  613.               Writing into string constants is a very  bad  idea;
  614.               "constants" should be constant.
  615.  
  616. PPRREEPPRROOCCEESSSSOORR OOPPTTIIOONNSS
  617.        These  options control the C preprocessor, which is run on
  618.        each C source file before actual compilation.
  619.  
  620.        If you use the `--EE' option, GCC does nothing  except  pre-
  621.        processing.  Some of these options make sense only togeth-
  622.        er with `--EE' because they cause the preprocessor output to
  623.        be unsuitable for actual compilation.
  624.  
  625.        --iinncclluuddee _f_i_l_e
  626.               Process _f_i_l_e as input before processing the regular
  627.               input file.  In effect, the contents  of  _f_i_l_e  are
  628.               compiled  first.   Any `--DD' and `--UU' options on the
  629.               command line are always processed before  `--iinncclluuddee
  630.               _f_i_l_e',  regardless  of  the order in which they are
  631.               written.  All the `--iinncclluuddee' and `--iimmaaccrrooss' options
  632.               are  processed in the order in which they are writ-
  633.               ten.
  634.  
  635.        --iimmaaccrrooss _f_i_l_e
  636.               Process _f_i_l_e as  input,  discarding  the  resulting
  637.               output,  before  processing the regular input file.
  638.               Because the output generated from _f_i_l_e is  discard-
  639.               ed,  the  only effect of `--iimmaaccrrooss _f_i_l_e' is to make
  640.               the macros defined in _f_i_l_e available for use in the
  641.               main  input.   The  preprocessor evaluates any `--DD'
  642.               and `--UU' options on the command  line  before  pro-
  643.               cessing  `--iimmaaccrrooss_f_i_l_e', regardless of the order in
  644.               which they are written.   All  the  `--iinncclluuddee'  and
  645.               `--iimmaaccrrooss'  options  are  processed in the order in
  646.               which they are written.
  647.  
  648.        --iiddiirraafftteerr _d_i_r
  649.               Add the directory _d_i_r to the second  include  path.
  650.               The  directories  on  the  second  include path are
  651.               searched when a header file is not found in any  of
  652.               the  directories  in the main include path (the one
  653.               that `--II' adds to).
  654.  
  655.  
  656.  
  657.  
  658. GNU Tools                   1993/10/13                         10
  659.  
  660.  
  661.  
  662.  
  663.  
  664. GCC(1)                      GNU Tools                      GCC(1)
  665.  
  666.  
  667.        --iipprreeffiixx _p_r_e_f_i_x
  668.               Specify  _p_r_e_f_i_x  as  the  prefix   for   subsequent
  669.               `--iiwwiitthhpprreeffiixx' options.
  670.  
  671.        --iiwwiitthhpprreeffiixx _d_i_r
  672.               Add  a  directory  to the second include path.  The
  673.               directory's name is made  by  concatenating  _p_r_e_f_i_x
  674.               and _d_i_r, where _p_r_e_f_i_x was specified previously with
  675.               `--iipprreeffiixx'.
  676.  
  677.        --nnoossttddiinncc
  678.               Do not search the standard system  directories  for
  679.               header files.  Only the directories you have speci-
  680.               fied with `--II' options (and the current  directory,
  681.               if appropriate) are searched.
  682.  
  683.               By  using both `--nnoossttddiinncc' and `--II--', you can limit
  684.               the include-file search file to only those directo-
  685.               ries you specify explicitly.
  686.  
  687.        --nnoossttddiinncc++++
  688.               Do  not search for header files in the C++-specific
  689.               standard directories, but do still search the other
  690.               standard  directories.   (This  option is used when
  691.               building `lliibbgg++++'.)
  692.  
  693.        --uunnddeeff Do not predefine any nonstandard macros.   (Includ-
  694.               ing architecture flags).
  695.  
  696.        --EE     Run  only the C preprocessor.  Preprocess all the C
  697.               source files specified and output  the  results  to
  698.               standard output or to the specified output file.
  699.  
  700.        --CC     Tell  the  preprocessor  not  to  discard comments.
  701.               Used with the `--EE' option.
  702.  
  703.        --PP     Tell the preprocessor not to generate `##lliinnee'  com-
  704.               mands.  Used with the `--EE' option.
  705.  
  706.        --MM  [[ --MMGG ]]
  707.               Tell the preprocessor to output a rule suitable for
  708.               mmaakkee describing the  dependencies  of  each  object
  709.               file.   For each source file, the preprocessor out-
  710.               puts one mmaakkee-rule whose target is the object  file
  711.               name  for  that  source file and whose dependencies
  712.               are all the files `##iinncclluuddee'd in it.  This rule may
  713.               be  a single line or may be continued with `\\'-new-
  714.               line if it is long.  The list of rules  is  printed
  715.               on  standard  output  instead of the preprocessed C
  716.               program.
  717.  
  718.               `--MM' implies `--EE'.
  719.  
  720.               `--MMGG' says to treat missing header files as  gener-
  721.  
  722.  
  723.  
  724. GNU Tools                   1993/10/13                         11
  725.  
  726.  
  727.  
  728.  
  729.  
  730. GCC(1)                      GNU Tools                      GCC(1)
  731.  
  732.  
  733.               ated  files and assume they live in the same direc-
  734.               tory as the source file.  It must be  specified  in
  735.               addition to `--MM'.
  736.  
  737.        --MMMM  [[ --MMGG ]]
  738.               Like  `--MM'  but  the  output mentions only the user
  739.               header files included with `##iinncclluuddee _f_i_l_e"'.   Sys-
  740.               tem  header  files  included with `##iinncclluuddee <<_f_i_l_e>'
  741.               are omitted.
  742.  
  743.        --MMDD    Like `--MM' but the dependency information is written
  744.               to  files  with  names  made by replacing `..oo' with
  745.               `..dd' at the end of the output file names.  This  is
  746.               in    addition    to    compiling   the   file   as
  747.               specified--`--MMDD' does not inhibit ordinary compila-
  748.               tion the way `--MM' does.
  749.  
  750.               The Mach utility `mmdd' can be used to merge the `..dd'
  751.               files into a single dependency  file  suitable  for
  752.               using with the `mmaakkee' command.
  753.  
  754.        --MMMMDD   Like  `--MMDD'  except mention only user header files,
  755.               not system header files.
  756.  
  757.        --HH     Print the name of each header file used,  in  addi-
  758.               tion to other normal activities.
  759.  
  760.        --AA_q_u_e_s_t_i_o_n((_a_n_s_w_e_r))
  761.               Assert  the  answer _a_n_s_w_e_r for _q_u_e_s_t_i_o_n, in case it
  762.               is tested with a preprocessor conditional  such  as
  763.               `##iiff  ##_q_u_e_s_t_i_o_n((_a_n_s_w_e_r))'.  `--AA--' disables the stan-
  764.               dard assertions that normally describe  the  target
  765.               machine.
  766.  
  767.        --AA_q_u_e_s_t_i_o_n
  768.               (_a_n_s_w_e_r)  Assert the answer _a_n_s_w_e_r for _q_u_e_s_t_i_o_n, in
  769.               case it is tested with a  preprocessor  conditional
  770.               such  as  `##iiff  #_q_u_e_s_t_i_o_n(_a_n_s_w_e_r)'.  `--AA--' disables
  771.               the standard assertions that normally describe  the
  772.               target machine.
  773.  
  774.        --DD_m_a_c_r_o
  775.               Define macro _m_a_c_r_o with the string `11' as its defi-
  776.               nition.
  777.  
  778.        --DD_m_a_c_r_o==_d_e_f_n
  779.               Define macro _m_a_c_r_o as  _d_e_f_n.     All  instances  of
  780.               `--DD'  on  the command line are processed before any
  781.               `--UU' options.
  782.  
  783.        --UU_m_a_c_r_o
  784.               Undefine macro _m_a_c_r_o.  `--UU' options  are  evaluated
  785.               after  all  `--DD' options, but before any `--iinncclluuddee'
  786.               and `--iimmaaccrrooss' options.
  787.  
  788.  
  789.  
  790. GNU Tools                   1993/10/13                         12
  791.  
  792.  
  793.  
  794.  
  795.  
  796. GCC(1)                      GNU Tools                      GCC(1)
  797.  
  798.  
  799.        --ddMM    Tell the preprocessor to output only a list of  the
  800.               macro  definitions that are in effect at the end of
  801.               preprocessing.  Used with the `--EE' option.
  802.  
  803.        --ddDD    Tell the preprocessor to pass all macro definitions
  804.               into  the  output,  in their proper sequence in the
  805.               rest of the output.
  806.  
  807.        --ddNN    Like `--ddDD' except that the macro arguments and con-
  808.               tents are omitted.  Only `##ddeeffiinnee _n_a_m_e' is included
  809.               in the output.
  810.  
  811. AASSSSEEMMBBLLEERR OOPPTTIIOONN
  812.        --WWaa,,_o_p_t_i_o_n
  813.               Pass _o_p_t_i_o_n as an option to the assembler.  If  _o_p_-
  814.               _t_i_o_n contains commas, it is split into multiple op-
  815.               tions at the commas.
  816.  
  817. LLIINNKKEERR OOPPTTIIOONNSS
  818.        These options come into play when the compiler  links  ob-
  819.        ject files into an executable output file.  They are mean-
  820.        ingless if the compiler is not doing a link step.
  821.  
  822.        _o_b_j_e_c_t_-_f_i_l_e_-_n_a_m_e
  823.               A file name that does not end in a  special  recog-
  824.               nized  suffix  is considered to name an object file
  825.               or library.  (Object files are  distinguished  from
  826.               libraries  by the linker according to the file con-
  827.               tents.)  If GCC does  a  link  step,  these  object
  828.               files are used as input to the linker.
  829.  
  830.        --ll_l_i_b_r_a_r_y
  831.               Use the library named _l_i_b_r_a_r_y when linking.
  832.  
  833.               The  linker searches a standard list of directories
  834.               for the library, which is  actually  a  file  named
  835.               `lliibb_l_i_b_r_a_r_y.a'.   The linker then uses this file as
  836.               if it had been specified precisely by name.
  837.  
  838.               The directories searched include  several  standard
  839.               system  directories  plus any that you specify with
  840.               `--LL'.
  841.  
  842.               Normally the  files  found  this  way  are  library
  843.               files--archive   files  whose  members  are  object
  844.               files.  The linker handles an archive file by scan-
  845.               ning  through  it  for members which define symbols
  846.               that have so far been referenced but  not  defined.
  847.               However,  if  the  linker  finds an ordinary object
  848.               file rather than a  library,  the  object  file  is
  849.               linked  in  the usual fashion.  The only difference
  850.               between using an `--ll' option and specifying a  file
  851.               name  is that `--ll' surrounds _l_i_b_r_a_r_y with `lliibb' and
  852.               `..aa' and searches several directories.
  853.  
  854.  
  855.  
  856. GNU Tools                   1993/10/13                         13
  857.  
  858.  
  859.  
  860.  
  861.  
  862. GCC(1)                      GNU Tools                      GCC(1)
  863.  
  864.  
  865.        --lloobbjjcc You need this special case of the --ll option in  or-
  866.               der to link an Objective C program.
  867.  
  868.        --nnoossttaarrttffiilleess
  869.               Do  not  use the standard system startup files when
  870.               linking.  The standard libraries are used normally.
  871.  
  872.        --nnoossttddlliibb
  873.               Don't use the standard system libraries and startup
  874.               files when linking.  Only  the  files  you  specify
  875.               will be passed to the linker.
  876.  
  877.        --ssttaattiicc
  878.               On  systems that support dynamic linking, this pre-
  879.               vents linking with the shared libraries.  On  other
  880.               systems, this option has no effect.
  881.  
  882.        --sshhaarreedd
  883.               Produce  a  shared  object which can then be linked
  884.               with other objects to form an executable.   Only  a
  885.               few systems support this option.
  886.  
  887.        --ssyymmbboolliicc
  888.               Bind  references  to global symbols when building a
  889.               shared object.  Warn about  any  unresolved  refer-
  890.               ences  (unless overridden by the link editor option
  891.               `--XXlliinnkkeerr --zz --XXlliinnkkeerr ddeeffss').  Only a  few  systems
  892.               support this option.
  893.  
  894.        --XXlliinnkkeerr _o_p_t_i_o_n
  895.               Pass  _o_p_t_i_o_n  as  an option to the linker.  You can
  896.               use this to supply system-specific  linker  options
  897.               which GNU CC does not know how to recognize.
  898.  
  899.               If  you  want to pass an option that takes an argu-
  900.               ment, you must use `--XXlliinnkkeerr' twice, once  for  the
  901.               option  and once for the argument.  For example, to
  902.               pass `--aasssseerrtt ddeeffiinniittiioonnss', you must write `--XXlliinnkk--
  903.               eerr --aasssseerrtt --XXlliinnkkeerr ddeeffiinniittiioonnss'.  It does not work
  904.               to write `--XXlliinnkkeerr ""--aasssseerrtt ddeeffiinniittiioonnss""',  because
  905.               this passes the entire string as a single argument,
  906.               which is not what the linker expects.
  907.  
  908.        --WWll,,_o_p_t_i_o_n
  909.               Pass _o_p_t_i_o_n as an option to the linker.  If  _o_p_t_i_o_n
  910.               contains  commas, it is split into multiple options
  911.               at the commas.
  912.  
  913.        --uu _s_y_m_b_o_l
  914.               Pretend the symbol _s_y_m_b_o_l is  undefined,  to  force
  915.               linking  of  library modules to define it.  You can
  916.               use `--uu' multiple times with different  symbols  to
  917.               force loading of additional library modules.
  918.  
  919.  
  920.  
  921.  
  922. GNU Tools                   1993/10/13                         14
  923.  
  924.  
  925.  
  926.  
  927.  
  928. GCC(1)                      GNU Tools                      GCC(1)
  929.  
  930.  
  931. DDIIRREECCTTOORRYY OOPPTTIIOONNSS
  932.        These  options  specify  directories  to search for header
  933.        files, for libraries and for parts of the compiler:
  934.  
  935.        --II_d_i_r  Append directory _d_i_r to  the  list  of  directories
  936.               searched for include files.
  937.  
  938.        --II--    Any  directories  you specify with `--II' options be-
  939.               fore the `--II--' option are  searched  only  for  the
  940.               case  of  `##iinncclluuddee  ""_f_i_l_e""'; they are not searched
  941.               for `##iinncclluuddee <<_f_i_l_e>'.
  942.  
  943.               If additional directories are specified  with  `--II'
  944.               options  after  the  `--II--',  these  directories are
  945.               searched for all `##iinncclluuddee' directives.  (Ordinari-
  946.               ly _a_l_l `--II' directories are used this way.)
  947.  
  948.               In  addition,  the `--II--' option inhibits the use of
  949.               the current directory (where the current input file
  950.               came  from) as the first search directory for `##iinn--
  951.               cclluuddee ""_f_i_l_e""'.  There is no way  to  override  this
  952.               effect  of  `--II--'.   With  `--II..'  you  can  specify
  953.               searching the directory which was current when  the
  954.               compiler was invoked.  That is not exactly the same
  955.               as what the preprocessor does by default, but it is
  956.               often satisfactory.
  957.  
  958.               `--II--' does not inhibit the use of the standard sys-
  959.               tem directories for header files.  Thus, `--II--'  and
  960.               `--nnoossttddiinncc' are independent.
  961.  
  962.        --LL_d_i_r  Add  directory _d_i_r to the list of directories to be
  963.               searched for `--ll'.
  964.  
  965.        --BB_p_r_e_f_i_x
  966.               This option specifies where to  find  the  executa-
  967.               bles,  libraries and data files of the compiler it-
  968.               self.
  969.  
  970.               The compiler driver program runs one or more of the
  971.               subprograms  `ccpppp', `cccc11' (or, for C++, `cccc11pplluuss'),
  972.               `aass' and `lldd'.  It tries _p_r_e_f_i_x  as  a  prefix  for
  973.               each program it tries to run, both with and without
  974.               `_m_a_c_h_i_n_e//_v_e_r_s_i_o_n//'.
  975.  
  976.               For each subprogram to be run, the compiler  driver
  977.               first  tries the `--BB' prefix, if any.  If that name
  978.               is not found, or if `--BB'  was  not  specified,  the
  979.               driver  tries  two  standard  prefixes,  which  are
  980.               `//uussrr//lliibb//ggcccc//' and `//uussrr//llooccaall//lliibb//ggcccc--lliibb//'.   If
  981.               neither  of  those  results  in a file name that is
  982.               found, the compiler driver searches for the unmodi-
  983.               fied  program name, using the directories specified
  984.               in your `PPAATTHH' environment variable.
  985.  
  986.  
  987.  
  988. GNU Tools                   1993/10/13                         15
  989.  
  990.  
  991.  
  992.  
  993.  
  994. GCC(1)                      GNU Tools                      GCC(1)
  995.  
  996.  
  997.               The  run-time  support  file  `lliibbggcccc..aa'  is   also
  998.               searched  for using the `--BB' prefix, if needed.  If
  999.               it is not found there, the  two  standard  prefixes
  1000.               above are tried, and that is all.  The file is left
  1001.               out of the link if it is not found by those  means.
  1002.               Most  of  the time, on most machines, `lliibbggcccc..aa' is
  1003.               not actually necessary.
  1004.  
  1005.               You can get a similar result from  the  environment
  1006.               variable  GGCCCC__EEXXEECC__PPRREEFFIIXX;  if  it  is defined, its
  1007.               value is used as a prefix in the same way.  If both
  1008.               the  `--BB'  option  and the GGCCCC__EEXXEECC__PPRREEFFIIXX variable
  1009.               are present, the `--BB' option is used first and  the
  1010.               environment variable value second.
  1011.  
  1012. WWAARRNNIINNGG OOPPTTIIOONNSS
  1013.        Warnings are diagnostic messages that report constructions
  1014.        which are not inherently erroneous but which are risky  or
  1015.        suggest there may have been an error.
  1016.  
  1017.        These  options  control  the  amount and kinds of warnings
  1018.        produced by GNU CC:
  1019.  
  1020.        --ffssyynnttaaxx--oonnllyy
  1021.               Check the code for syntax errors,  but  don't  emit
  1022.               any output.
  1023.  
  1024.        --ww     Inhibit all warning messages.
  1025.  
  1026.        --WWnnoo--iimmppoorrtt
  1027.               Inhibit  warning messages about the use of ##iimmppoorrtt.
  1028.  
  1029.        --ppeeddaannttiicc
  1030.               Issue all the  warnings  demanded  by  strict  ANSI
  1031.               standard  C; reject all programs that use forbidden
  1032.               extensions.
  1033.  
  1034.               Valid ANSI standard C programs should compile prop-
  1035.               erly with or without this option (though a rare few
  1036.               will require `--aannssii').  However, without  this  op-
  1037.               tion, certain GNU extensions and traditional C fea-
  1038.               tures are supported as  well.   With  this  option,
  1039.               they  are rejected.  There is no reason to _u_s_e this
  1040.               option; it exists only to satisfy pedants.
  1041.  
  1042.               `--ppeeddaannttiicc' does not cause warning messages for use
  1043.               of the alternate keywords whose names begin and end
  1044.               with `____'.  Pedantic warnings are also disabled  in
  1045.               the  expression that follows ____eexxtteennssiioonn____.  Howev-
  1046.               er, only system header files should use  these  es-
  1047.               cape  routes;  application  programs  should  avoid
  1048.               them.
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054. GNU Tools                   1993/10/13                         16
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060. GCC(1)                      GNU Tools                      GCC(1)
  1061.  
  1062.  
  1063.        --ppeeddaannttiicc--eerrrroorrss
  1064.               Like `--ppeeddaannttiicc', except that errors  are  produced
  1065.               rather than warnings.
  1066.  
  1067.        --WW     Print extra warning messages for these events:
  1068.  
  1069.           +o   A  nonvolatile  automatic variable might be changed
  1070.               by a call to lloonnggjjmmpp.  These warnings are  possible
  1071.               only in optimizing compilation.
  1072.  
  1073.               The  compiler  sees  only  the calls to sseettjjmmpp.  It
  1074.               cannot know where lloonnggjjmmpp will be called; in  fact,
  1075.               a  signal handler could call it at any point in the
  1076.               code.  As a result, you may get a warning even when
  1077.               there  is in fact no problem because lloonnggjjmmpp cannot
  1078.               in fact be called at the place which would cause  a
  1079.               problem.
  1080.  
  1081.           +o   A function can return either with or without a val-
  1082.               ue.  (Falling off the end of the function  body  is
  1083.               considered  returning  without a value.)  For exam-
  1084.               ple, this function would evoke such a warning:
  1085.  
  1086.               foo (a)
  1087.               {
  1088.                 if (a > 0)
  1089.                   return a;
  1090.               }
  1091.  
  1092.               Spurious warnings can occur because GNU CC does not
  1093.               realize that certain functions (including aabboorrtt and
  1094.               lloonnggjjmmpp) will never return.
  1095.  
  1096.           +o   An expression-statement contains no side effects.
  1097.  
  1098.           +o   An unsigned value is compared against zero with `>>'
  1099.               or `<<=='.
  1100.  
  1101.  
  1102.        --WWiimmpplliicciitt
  1103.               Warn whenever a function or parameter is implicitly
  1104.               declared.
  1105.  
  1106.        --WWrreettuurrnn--ttyyppee
  1107.               Warn whenever a function is defined with a  return-
  1108.               type that defaults to iinntt.  Also warn about any rree--
  1109.               ttuurrnn statement with no return-value in  a  function
  1110.               whose return-type is not vvooiidd.
  1111.  
  1112.        --WWuunnuusseedd
  1113.               Warn whenever a local variable is unused aside from
  1114.               its declaration, whenever a  function  is  declared
  1115.               static  but never defined, and whenever a statement
  1116.               computes a result that is explicitly not used.
  1117.  
  1118.  
  1119.  
  1120. GNU Tools                   1993/10/13                         17
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126. GCC(1)                      GNU Tools                      GCC(1)
  1127.  
  1128.  
  1129.        --WWsswwiittcchh
  1130.               Warn whenever a sswwiittcchh statement has  an  index  of
  1131.               enumeral  type  and lacks a ccaassee for one or more of
  1132.               the named codes of that enumeration.  (The presence
  1133.               of  a  ddeeffaauulltt  label prevents this warning.)  ccaassee
  1134.               labels outside the enumeration range  also  provoke
  1135.               warnings when this option is used.
  1136.  
  1137.        --WWccoommmmeenntt
  1138.               Warn whenever a comment-start sequence `//**' appears
  1139.               in a comment.
  1140.  
  1141.        --WWttrriiggrraapphhss
  1142.               Warn if any  trigraphs  are  encountered  (assuming
  1143.               they are enabled).
  1144.  
  1145.        --WWffoorrmmaatt
  1146.               Check calls to pprriinnttff and ssccaannff, etc., to make sure
  1147.               that the arguments supplied have types  appropriate
  1148.               to the format string specified.
  1149.  
  1150.        --WWcchhaarr--ssuubbssccrriippttss
  1151.               Warn  if an array subscript has type cchhaarr.  This is
  1152.               a common cause of error, as programmers often  for-
  1153.               get that this type is signed on some machines.
  1154.  
  1155.        --WWuunniinniittiiaalliizzeedd
  1156.               An  automatic  variable is used without first being
  1157.               initialized.
  1158.  
  1159.               These warnings are possible only in optimizing com-
  1160.               pilation,  because  they require data flow informa-
  1161.               tion that is computed only when optimizing.  If you
  1162.               don't  specify  `--OO',  you  simply  won't get these
  1163.               warnings.
  1164.  
  1165.               These warnings occur only for  variables  that  are
  1166.               candidates  for  register  allocation.   Therefore,
  1167.               they do not occur for a variable that  is  declared
  1168.               vvoollaattiillee,  or whose address is taken, or whose size
  1169.               is other than 1, 2, 4 or 8 bytes.   Also,  they  do
  1170.               not  occur  for  structures, unions or arrays, even
  1171.               when they are in registers.
  1172.  
  1173.               Note that there may be no warning about a  variable
  1174.               that is used only to compute a value that itself is
  1175.               never used, because such computations may be delet-
  1176.               ed  by  data  flow analysis before the warnings are
  1177.               printed.
  1178.  
  1179.               These warnings are made optional because GNU CC  is
  1180.               not  smart  enough  to  see all the reasons why the
  1181.               code might be correct despite appearing to have  an
  1182.               error.  Here is one example of how this can happen:
  1183.  
  1184.  
  1185.  
  1186. GNU Tools                   1993/10/13                         18
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192. GCC(1)                      GNU Tools                      GCC(1)
  1193.  
  1194.  
  1195.               {
  1196.                 int x;
  1197.                 switch (y)
  1198.                   {
  1199.                   case 1: x = 1;
  1200.                     break;
  1201.                   case 2: x = 4;
  1202.                     break;
  1203.                   case 3: x = 5;
  1204.                   }
  1205.                 foo (x);
  1206.               }
  1207.  
  1208.               If the value of yy is always 1, 2 or 3,  then  xx  is
  1209.               always  initialized,  but GNU CC doesn't know this.
  1210.               Here is another common case:
  1211.  
  1212.               {
  1213.                 int save_y;
  1214.                 if (change_y) save_y = y, y = new_y;
  1215.                 ...
  1216.                 if (change_y) y = save_y;
  1217.               }
  1218.  
  1219.               This has no bug because ssaavvee__yy is used only  if  it
  1220.               is set.
  1221.  
  1222.               Some  spurious  warnings  can be avoided if you de-
  1223.               clare as vvoollaattiillee all the functions  you  use  that
  1224.               never return.
  1225.  
  1226.        --WWppaarreenntthheesseess
  1227.               Warn  if  parentheses  are  omitted in certain con-
  1228.               texts.
  1229.  
  1230.        --WWtteemmppllaattee--ddeebbuuggggiinngg
  1231.               When using templates in a C++ program, warn if  de-
  1232.               bugging is not yet fully available (C++ only).
  1233.  
  1234.        --WWaallll  All  of the above `--WW' options combined.  These are
  1235.               all the options which pertain to usage that we rec-
  1236.               ommend  avoiding  and  that  we  believe is easy to
  1237.               avoid, even in conjunction with macros.
  1238.  
  1239.        The remaining `--WW......' options are not implied  by  `--WWaallll'
  1240.        because  they  warn  about  constructions that we consider
  1241.        reasonable to use, on occasion, in clean programs.
  1242.  
  1243.        --WWttrraaddiittiioonnaall
  1244.               Warn about certain constructs that  behave  differ-
  1245.               ently in traditional and ANSI C.
  1246.  
  1247.           +o   Macro  arguments  occurring within string constants
  1248.               in the macro body.  These would substitute the  ar-
  1249.  
  1250.  
  1251.  
  1252. GNU Tools                   1993/10/13                         19
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258. GCC(1)                      GNU Tools                      GCC(1)
  1259.  
  1260.  
  1261.               gument  in  traditional C, but are part of the con-
  1262.               stant in ANSI C.
  1263.  
  1264.           +o   A function declared external in one block and  then
  1265.               used after the end of the block.
  1266.  
  1267.           +o   A sswwiittcchh statement has an operand of type lloonngg.
  1268.  
  1269.  
  1270.        --WWsshhaaddooww
  1271.               Warn  whenever a local variable shadows another lo-
  1272.               cal variable.
  1273.  
  1274.        --WWiidd--ccllaasshh--_l_e_n
  1275.               Warn whenever two distinct identifiers match in the
  1276.               first  _l_e_n characters.  This may help you prepare a
  1277.               program that will compile  with  certain  obsolete,
  1278.               brain-damaged compilers.
  1279.  
  1280.        --WWppooiinntteerr--aarriitthh
  1281.               Warn about anything that depends on the "size of" a
  1282.               function type or of  vvooiidd.   GNU  C  assigns  these
  1283.               types  a size of 1, for convenience in calculations
  1284.               with vvooiidd ** pointers and pointers to functions.
  1285.  
  1286.        --WWccaasstt--qquuaall
  1287.               Warn whenever a pointer is cast so as to  remove  a
  1288.               type  qualifier from the target type.  For example,
  1289.               warn if a ccoonnsstt cchhaarr ** is cast to an ordinary  cchhaarr
  1290.               **.
  1291.  
  1292.        --WWccaasstt--aalliiggnn
  1293.               Warn  whenever  a pointer is cast such that the re-
  1294.               quired alignment of the target is  increased.   For
  1295.               example,  warn  if  a cchhaarr ** is cast to an iinntt ** on
  1296.               machines where integers can  only  be  accessed  at
  1297.               two- or four-byte boundaries.
  1298.  
  1299.        --WWwwrriittee--ssttrriinnggss
  1300.               Give  string  constants the type ccoonnsstt cchhaarr[[_l_e_n_g_t_h]]
  1301.               so that copying the address of one into a non-ccoonnsstt
  1302.               cchhaarr  ** pointer will get a warning.  These warnings
  1303.               will help you find at compile time  code  that  can
  1304.               try  to  write  into a string constant, but only if
  1305.               you have been very careful  about  using  ccoonnsstt  in
  1306.               declarations  and  prototypes.   Otherwise, it will
  1307.               just be a nuisance; this is why  we  did  not  make
  1308.               `--WWaallll' request these warnings.
  1309.  
  1310.        --WWccoonnvveerrssiioonn
  1311.               Warn  if  a prototype causes a type conversion that
  1312.               is different from what would happen to the same ar-
  1313.               gument  in  the  absence  of a prototype.  This in-
  1314.               cludes conversions of fixed point to  floating  and
  1315.  
  1316.  
  1317.  
  1318. GNU Tools                   1993/10/13                         20
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324. GCC(1)                      GNU Tools                      GCC(1)
  1325.  
  1326.  
  1327.               vice  versa,  and conversions changing the width or
  1328.               signedness of a fixed point  argument  except  when
  1329.               the same as the default promotion.
  1330.  
  1331.        --WWaaggggrreeggaattee--rreettuurrnn
  1332.               Warn  if  any  functions  that return structures or
  1333.               unions are defined or called.  (In languages  where
  1334.               you  can return an array, this also elicits a warn-
  1335.               ing.)
  1336.  
  1337.        --WWssttrriicctt--pprroottoottyyppeess
  1338.               Warn if a function is declared or  defined  without
  1339.               specifying the argument types.  (An old-style func-
  1340.               tion definition is permitted without a  warning  if
  1341.               preceded by a declaration which specifies the argu-
  1342.               ment types.)
  1343.  
  1344.        --WWmmiissssiinngg--pprroottoottyyppeess
  1345.               Warn if a global function is defined without a pre-
  1346.               vious  prototype  declaration.  This warning is is-
  1347.               sued even if the definition itself provides a  pro-
  1348.               totype.  The aim is to detect global functions that
  1349.               fail to be declared in header files.
  1350.  
  1351.        --WWmmiissssiinngg--ddeeccllaarraattiioonnss
  1352.               Warn if a global function is defined without a pre-
  1353.               vious  declaration.   Do  so even if the definition
  1354.               itself provides a prototype.  Use  this  option  to
  1355.               detect  global  functions  that are not declared in
  1356.               header files.
  1357.  
  1358.        --WWrreedduunnddaanntt--ddeeccllss
  1359.               Warn if anything is declared more than once in  the
  1360.               same  scope,  even in cases where multiple declara-
  1361.               tion is valid and changes nothing.
  1362.  
  1363.        --WWnneesstteedd--eexxtteerrnnss
  1364.               Warn if an eexxtteerrnn declaration is encountered within
  1365.               an function.
  1366.  
  1367.        --WWeennuumm--ccllaasshh
  1368.               Warn about conversion between different enumeration
  1369.               types (C++ only).
  1370.  
  1371.        --WWoovveerrllooaaddeedd--vviirrttuuaall
  1372.               (C++ only.)  In a derived class, the definitions of
  1373.               virtual  functions must match the type signature of
  1374.               a virtual function declared in the base class.  Use
  1375.               this  option  to  request  warnings  when a derived
  1376.               class declares a function that may be an  erroneous
  1377.               attempt to define a virtual function: that is, warn
  1378.               when a function with the same  name  as  a  virtual
  1379.               function  in the base class, but with a type signa-
  1380.               ture that doesn't match any virtual functions  from
  1381.  
  1382.  
  1383.  
  1384. GNU Tools                   1993/10/13                         21
  1385.  
  1386.  
  1387.  
  1388.  
  1389.  
  1390. GCC(1)                      GNU Tools                      GCC(1)
  1391.  
  1392.  
  1393.               the base class.
  1394.  
  1395.        --WWiinnlliinnee
  1396.               Warn  if  a function can not be inlined, and either
  1397.               it was  declared  as  inline,  or  else  the  --ffiinn--
  1398.               lliinnee--ffuunnccttiioonnss option was given.
  1399.  
  1400.        --WWeerrrroorr
  1401.               Treat  warnings  as errors; abort compilation after
  1402.               any warning.
  1403.  
  1404. DDEEBBUUGGGGIINNGG OOPPTTIIOONNSS
  1405.        GNU CC has various special options that are used  for  de-
  1406.        bugging either your program or GCC:
  1407.  
  1408.        --gg     Produce debugging information in the operating sys-
  1409.               tem's native format (stabs, COFF, XCOFF, or DWARF).
  1410.               GDB can work with this debugging information.
  1411.  
  1412.               On most systems that use stabs format, `--gg' enables
  1413.               use of extra debugging information  that  only  GDB
  1414.               can  use;  this  extra  information makes debugging
  1415.               work better in GDB but will probably make other de-
  1416.               buggers  crash  or  refuse to read the program.  If
  1417.               you want to control for certain whether to generate
  1418.               the  extra  information, use `--ggssttaabbss++', `--ggssttaabbss',
  1419.               `--ggxxccooffff++',  `--ggxxccooffff',  `--ggddwwaarrff++',  or  `--ggddwwaarrff'
  1420.               (see below).
  1421.  
  1422.               Unlike most other C compilers, GNU CC allows you to
  1423.               use `--gg' with `--OO'.  The shortcuts taken  by  opti-
  1424.               mized  code may occasionally produce surprising re-
  1425.               sults: some variables you declared may not exist at
  1426.               all; flow of control may briefly move where you did
  1427.               not expect it; some statements may not be  executed
  1428.               because they compute constant results or their val-
  1429.               ues were already at hand; some statements may  exe-
  1430.               cute  in  different  places because they were moved
  1431.               out of loops.
  1432.  
  1433.               Nevertheless it proves possible to debug  optimized
  1434.               output.   This makes it reasonable to use the opti-
  1435.               mizer for programs that might have bugs.
  1436.  
  1437.        The following options are useful when GNU CC is  generated
  1438.        with the capability for more than one debugging format.
  1439.  
  1440.        --ggggddbb  Produce  debugging information in the native format
  1441.               (if that is supported), including GDB extensions if
  1442.               at all possible.
  1443.  
  1444.        --ggssttaabbss
  1445.               Produce  debugging  information in stabs format (if
  1446.               that is supported), without GDB  extensions.   This
  1447.  
  1448.  
  1449.  
  1450. GNU Tools                   1993/10/13                         22
  1451.  
  1452.  
  1453.  
  1454.  
  1455.  
  1456. GCC(1)                      GNU Tools                      GCC(1)
  1457.  
  1458.  
  1459.               is the format used by DBX on most BSD systems.
  1460.  
  1461.        --ggssttaabbss++
  1462.               Produce  debugging  information in stabs format (if
  1463.               that is supported), using GNU extensions understood
  1464.               only  by  the GNU debugger (GDB).  The use of these
  1465.               extensions is likely to make other debuggers  crash
  1466.               or refuse to read the program.
  1467.  
  1468.        --ggccooffff Produce  debugging  information  in COFF format (if
  1469.               that is supported).  This is the format used by SDB
  1470.               on  most System V systems prior to System V Release
  1471.               4.
  1472.  
  1473.        --ggxxccooffff
  1474.               Produce debugging information in XCOFF  format  (if
  1475.               that is supported).  This is the format used by the
  1476.               DBX debugger on IBM RS/6000 systems.
  1477.  
  1478.        --ggxxccooffff++
  1479.               Produce debugging information in XCOFF  format  (if
  1480.               that is supported), using GNU extensions understood
  1481.               only by the GNU debugger (GDB).  The use  of  these
  1482.               extensions  is likely to make other debuggers crash
  1483.               or refuse to read the program.
  1484.  
  1485.        --ggddwwaarrff
  1486.               Produce debugging information in DWARF  format  (if
  1487.               that is supported).  This is the format used by SDB
  1488.               on most System V Release 4 systems.
  1489.  
  1490.        --ggddwwaarrff++
  1491.               Produce debugging information in DWARF  format  (if
  1492.               that is supported), using GNU extensions understood
  1493.               only by the GNU debugger (GDB).  The use  of  these
  1494.               extensions  is likely to make other debuggers crash
  1495.               or refuse to read the program.
  1496.  
  1497.        --gg_l_e_v_e_l
  1498.        --ggggddbb_l_e_v_e_l
  1499.        --ggssttaabbss_l_e_v_e_l
  1500.        --ggccooffff_l_e_v_e_l --ggxxccooffff_l_e_v_e_l
  1501.  
  1502.        --ggddwwaarrff_l_e_v_e_l
  1503.               Request debugging information and also use _l_e_v_e_l to
  1504.               specify how much information.  The default level is
  1505.               2.
  1506.  
  1507.               Level 1 produces minimal  information,  enough  for
  1508.               making  backtraces in parts of the program that you
  1509.               don't plan to debug.  This includes descriptions of
  1510.               functions  and  external variables, but no informa-
  1511.               tion about local variables and no line numbers.
  1512.  
  1513.  
  1514.  
  1515.  
  1516. GNU Tools                   1993/10/13                         23
  1517.  
  1518.  
  1519.  
  1520.  
  1521.  
  1522. GCC(1)                      GNU Tools                      GCC(1)
  1523.  
  1524.  
  1525.               Level 3 includes extra information, such as all the
  1526.               macro definitions present in the program.  Some de-
  1527.               buggers support macro expansion when you use `--gg33'.
  1528.  
  1529.        --pp     Generate  extra  code  to write profile information
  1530.               suitable for the analysis program pprrooff.
  1531.  
  1532.        --ppgg    Generate extra code to  write  profile  information
  1533.               suitable for the analysis program ggpprrooff.
  1534.  
  1535.        --aa     Generate  extra  code  to write profile information
  1536.               for basic blocks, which will record the  number  of
  1537.               times  each  basic  block  is  executed.  This data
  1538.               could be analyzed by a program  like  ttccoovv.   Note,
  1539.               however,  that  the  format of the data is not what
  1540.               ttccoovv expects.  Eventually GNU ggpprrooff should  be  ex-
  1541.               tended to process this data.
  1542.  
  1543.        --dd_l_e_t_t_e_r_s
  1544.               Says  to make debugging dumps during compilation at
  1545.               times specified by _l_e_t_t_e_r_s.  This is used  for  de-
  1546.               bugging  the  compiler.  The file names for most of
  1547.               the dumps are made  by  appending  a  word  to  the
  1548.               source    file    name    (e.g.    `ffoooo..cc..rrttll'   or
  1549.               `ffoooo..cc..jjuummpp').
  1550.  
  1551.        --ddMM    Dump all macro definitions, at the end  of  prepro-
  1552.               cessing, and write no output.
  1553.  
  1554.        --ddNN    Dump  all macro names, at the end of preprocessing.
  1555.  
  1556.        --ddDD    Dump all macro definitions, at the end  of  prepro-
  1557.               cessing, in addition to normal output.
  1558.  
  1559.        --ddyy    Dump debugging information during parsing, to stan-
  1560.               dard error.
  1561.  
  1562.        --ddrr    Dump after RTL generation, to `_f_i_l_e..rrttll'.
  1563.  
  1564.        --ddxx    Just generate RTL for a function instead of compil-
  1565.               ing it.  Usually used with `rr'.
  1566.  
  1567.        --ddjj    Dump after first jump optimization, to `_f_i_l_e..jjuummpp'.
  1568.  
  1569.        --ddss    Dump after CSE  (including  the  jump  optimization
  1570.               that sometimes follows CSE), to `_f_i_l_e..ccssee'.
  1571.  
  1572.        --ddLL    Dump after loop optimization, to `_f_i_l_e..lloooopp'.
  1573.  
  1574.        --ddtt    Dump  after the second CSE pass (including the jump
  1575.               optimization  that  sometimes  follows   CSE),   to
  1576.               `_f_i_l_e..ccssee22'.
  1577.  
  1578.        --ddff    Dump after flow analysis, to `_f_i_l_e..ffllooww'.
  1579.  
  1580.  
  1581.  
  1582. GNU Tools                   1993/10/13                         24
  1583.  
  1584.  
  1585.  
  1586.  
  1587.  
  1588. GCC(1)                      GNU Tools                      GCC(1)
  1589.  
  1590.  
  1591.        --ddcc    Dump     after    instruction    combination,    to
  1592.               `_f_i_l_e..ccoommbbiinnee'.
  1593.  
  1594.        --ddSS    Dump after the first instruction  scheduling  pass,
  1595.               to `_f_i_l_e..sscchheedd'.
  1596.  
  1597.        --ddll    Dump    after   local   register   allocation,   to
  1598.               `_f_i_l_e..llrreegg'.
  1599.  
  1600.        --ddgg    Dump   after   global   register   allocation,   to
  1601.               `_f_i_l_e..ggrreegg'.
  1602.  
  1603.        --ddRR    Dump  after the second instruction scheduling pass,
  1604.               to `_f_i_l_e..sscchheedd22'.
  1605.  
  1606.        --ddJJ    Dump after last jump optimization, to `_f_i_l_e..jjuummpp22'.
  1607.  
  1608.        --dddd    Dump    after   delayed   branch   scheduling,   to
  1609.               `_f_i_l_e..ddbbrr'.
  1610.  
  1611.        --ddkk    Dump after conversion from registers to  stack,  to
  1612.               `_f_i_l_e..ssttaacckk'.
  1613.  
  1614.        --ddaa    Produce all the dumps listed above.
  1615.  
  1616.        --ddmm    Print statistics on memory usage, at the end of the
  1617.               run, to standard error.
  1618.  
  1619.        --ddpp    Annotate the assembler output with a comment  indi-
  1620.               cating which pattern and alternative was used.
  1621.  
  1622.        --ffpprreetteenndd--ffllooaatt
  1623.               When  running  a  cross-compiler,  pretend that the
  1624.               target machine uses the same floating point  format
  1625.               as  the host machine.  This causes incorrect output
  1626.               of the actual floating constants,  but  the  actual
  1627.               instruction  sequence  will probably be the same as
  1628.               GNU CC would make when running on  the  target  ma-
  1629.               chine.
  1630.  
  1631.        --ssaavvee--tteemmppss
  1632.               Store the usual "temporary" intermediate files per-
  1633.               manently; place them in the current  directory  and
  1634.               name  them based on the source file.  Thus, compil-
  1635.               ing `ffoooo..cc' with  `--cc  --ssaavvee--tteemmppss'  would  produce
  1636.               files `ffoooo..ccpppp' and `ffoooo..ss', as well as `ffoooo..oo'.
  1637.  
  1638.        --pprriinntt--ffiillee--nnaammee==_l_i_b_r_a_r_y
  1639.               Print  the  full  absolute name of the library file
  1640.               _l_i_b_r_a_r_y  that would be used  when  linking--and  do
  1641.               not  do  anything  else.   With this option, GNU CC
  1642.               does not compile or link anything; it  just  prints
  1643.               the file name.
  1644.  
  1645.  
  1646.  
  1647.  
  1648. GNU Tools                   1993/10/13                         25
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654. GCC(1)                      GNU Tools                      GCC(1)
  1655.  
  1656.  
  1657.        --pprriinntt--lliibbggcccc--ffiillee--nnaammee
  1658.               Same as `--pprriinntt--ffiillee--nnaammee==lliibbggcccc..aa'.
  1659.  
  1660.        --pprriinntt--pprroogg--nnaammee==_p_r_o_g_r_a_m
  1661.               Like `--pprriinntt--ffiillee--nnaammee', but searches for a program
  1662.               such as `cpp'.
  1663.  
  1664. OOPPTTIIMMIIZZAATTIIOONN OOPPTTIIOONNSS
  1665.        These options control various sorts of optimizations:
  1666.  
  1667.        --OO
  1668.  
  1669.        --OO11    Optimize.  Optimizing  compilation  takes  somewhat
  1670.               more  time, and a lot more memory for a large func-
  1671.               tion.
  1672.  
  1673.               Without `--OO', the compiler's goal is to reduce  the
  1674.               cost  of  compilation and to make debugging produce
  1675.               the expected results.  Statements are  independent:
  1676.               if  you  stop the program with a breakpoint between
  1677.               statements, you can then assign a new value to  any
  1678.               variable or change the program counter to any other
  1679.               statement in the function and get exactly  the  re-
  1680.               sults you would expect from the source code.
  1681.  
  1682.               Without  `--OO', only variables declared rreeggiisstteerr are
  1683.               allocated in  registers.   The  resulting  compiled
  1684.               code is a little worse than produced by PCC without
  1685.               `--OO'.
  1686.  
  1687.               With `--OO', the compiler tries to reduce  code  size
  1688.               and execution time.
  1689.  
  1690.               When    you   specify   `--OO',   the   two   options
  1691.               `--fftthhrreeaadd--jjuummppss' and `--ffddeeffeerr--ppoopp' are  turned  on.
  1692.               On    machines   that   have   delay   slots,   the
  1693.               `--ffddeellaayyeedd--bbrraanncchh' option is turned on.  For  those
  1694.               machines  that can support debugging even without a
  1695.               frame pointer, the `--ffoommiitt--ffrraammee--ppooiinntteerr' option is
  1696.               turned  on.   On some machines other flags may also
  1697.               be turned on.
  1698.  
  1699.        --OO22    Optimize even more.  Nearly all supported optimiza-
  1700.               tions  that  do  not involve a space-speed tradeoff
  1701.               are performed.  Loop unrolling and function  inlin-
  1702.               ing  are not done, for example.  As compared to --OO,
  1703.               this option increases both compilation time and the
  1704.               performance of the generated code.
  1705.  
  1706.        --OO33    Optimize  yet  more.  This  turns on everything --OO22
  1707.               does,   along   with   also   turning   on    --ffiinn--
  1708.               lliinnee--ffuunnccttiioonnss..
  1709.  
  1710.        --OO00    Do not optimize.
  1711.  
  1712.  
  1713.  
  1714. GNU Tools                   1993/10/13                         26
  1715.  
  1716.  
  1717.  
  1718.  
  1719.  
  1720. GCC(1)                      GNU Tools                      GCC(1)
  1721.  
  1722.  
  1723.               If  you  use  multiple  --OO options, with or without
  1724.               level numbers, the last such option is the one that
  1725.               is effective.
  1726.  
  1727.        Options  of  the form `--ff_f_l_a_g' specify machine-independent
  1728.        flags.  Most flags have both positive and negative  forms;
  1729.        the  negative  form  of  `--ffffoooo' would be `--ffnnoo--ffoooo'.  The
  1730.        following list shows only one form--the one which  is  not
  1731.        the  default.  You can figure out the other form by either
  1732.        removing `nnoo--' or adding it.
  1733.  
  1734.        --ffffllooaatt--ssttoorree
  1735.               Do not store floating point variables in registers.
  1736.               This  prevents  undesirable excess precision on ma-
  1737.               chines such as the 68000 where the floating  regis-
  1738.               ters (of the 68881) keep more precision than a ddoouu--
  1739.               bbllee is supposed to have.
  1740.  
  1741.               For most programs, the excess precision  does  only
  1742.               good,  but a few programs rely on the precise defi-
  1743.               nition of IEEE floating point.  Use `--ffffllooaatt--ssttoorree'
  1744.               for such programs.
  1745.  
  1746.        --ffmmeemmooiizzee--llooookkuuppss
  1747.  
  1748.        --ffssaavvee--mmeemmooiizzeedd
  1749.               Use heuristics to compile faster (C++ only).  These
  1750.               heuristics are not enabled by default,  since  they
  1751.               are  only effective for certain input files.  Other
  1752.               input files compile more slowly.
  1753.  
  1754.               The first time the compiler must build a call to  a
  1755.               member function (or reference to a data member), it
  1756.               must (1) determine  whether  the  class  implements
  1757.               member  functions  of  that name; (2) resolve which
  1758.               member function to call  (which  involves  figuring
  1759.               out  what  sorts  of  type  conversions  need to be
  1760.               made); and (3) check the visibility of  the  member
  1761.               function  to  the  caller.   All of this adds up to
  1762.               slower compilation.  Normally, the  second  time  a
  1763.               call  is made to that member function (or reference
  1764.               to that data member), it must go through  the  same
  1765.               lengthy  process  again.  This means that code like
  1766.               this
  1767.  
  1768.                 cout << "This " << p  <<  "  has  "  <<  n  <<  "
  1769.               legs.\n";
  1770.  
  1771.               makes six passes through all three steps.  By using
  1772.               a software cache,  a  "hit"  significantly  reduces
  1773.               this  cost.   Unfortunately, using the cache intro-
  1774.               duces another layer of mechanisms which must be im-
  1775.               plemented,   and   so   incurs  its  own  overhead.
  1776.               `--ffmmeemmooiizzee--llooookkuuppss' enables the software cache.
  1777.  
  1778.  
  1779.  
  1780. GNU Tools                   1993/10/13                         27
  1781.  
  1782.  
  1783.  
  1784.  
  1785.  
  1786. GCC(1)                      GNU Tools                      GCC(1)
  1787.  
  1788.  
  1789.               Because access privileges (visibility)  to  members
  1790.               and  member  functions may differ from one function
  1791.               context to the next, gg++++  may  need  to  flush  the
  1792.               cache.   With  the  `--ffmmeemmooiizzee--llooookkuuppss'  flag,  the
  1793.               cache is flushed after every function that is  com-
  1794.               piled.  The `-fsave-memoized' flag enables the same
  1795.               software cache, but when  the  compiler  determines
  1796.               that  the  context  of  the  last function compiled
  1797.               would yield the same access privileges of the  next
  1798.               function  to compile, it preserves the cache.  This
  1799.               is most helpful when defining many member functions
  1800.               for  the  same  class: with the exception of member
  1801.               functions which are friends of other classes,  each
  1802.               member  function has exactly the same access privi-
  1803.               leges as every other, and the  cache  need  not  be
  1804.               flushed.
  1805.  
  1806.        --ffnnoo--ddeeffaauulltt--iinnlliinnee
  1807.               Don't make member functions inline by default mere-
  1808.               ly because they are defined inside the class  scope
  1809.               (C++ only).
  1810.  
  1811.        --ffnnoo--ddeeffeerr--ppoopp
  1812.               Always  pop  the arguments to each function call as
  1813.               soon as that function returns.  For machines  which
  1814.               must  pop arguments after a function call, the com-
  1815.               piler normally lets  arguments  accumulate  on  the
  1816.               stack  for several function calls and pops them all
  1817.               at once.
  1818.  
  1819.        --ffffoorrccee--mmeemm
  1820.               Force memory operands to be copied  into  registers
  1821.               before  doing arithmetic on them.  This may produce
  1822.               better code by making all memory references  poten-
  1823.               tial common subexpressions.  When they are not com-
  1824.               mon subexpressions, instruction combination  should
  1825.               eliminate  the separate register-load.  I am inter-
  1826.               ested in hearing about the difference this makes.
  1827.  
  1828.        --ffffoorrccee--aaddddrr
  1829.               Force memory address constants to  be  copied  into
  1830.               registers  before  doing  arithmetic on them.  This
  1831.               may produce better code just as `--ffffoorrccee--mmeemm'  may.
  1832.               I  am  interested  in  hearing about the difference
  1833.               this makes.
  1834.  
  1835.        --ffoommiitt--ffrraammee--ppooiinntteerr
  1836.               Don't keep the frame  pointer  in  a  register  for
  1837.               functions that don't need one.  This avoids the in-
  1838.               structions to save, set up and restore frame point-
  1839.               ers;  it  also makes an extra register available in
  1840.               many functions.  _I_t _a_l_s_o _m_a_k_e_s _d_e_b_u_g_g_i_n_g _i_m_p_o_s_s_i_b_l_e
  1841.               _o_n most machines.
  1842.  
  1843.  
  1844.  
  1845.  
  1846. GNU Tools                   1993/10/13                         28
  1847.  
  1848.  
  1849.  
  1850.  
  1851.  
  1852. GCC(1)                      GNU Tools                      GCC(1)
  1853.  
  1854.  
  1855.               On some machines, such as the Vax, this flag has no
  1856.               effect, because the standard calling sequence auto-
  1857.               matically  handles the frame pointer and nothing is
  1858.               saved by pretending it doesn't exist.  The machine-
  1859.               description  macro  FFRRAAMMEE__PPOOIINNTTEERR__RREEQQUUIIRREEDD controls
  1860.               whether a target machine supports this flag.
  1861.  
  1862.        --ffiinnlliinnee--ffuunnccttiioonnss
  1863.               Integrate all simple functions into their  callers.
  1864.               The  compiler heuristically decides which functions
  1865.               are simple enough to be worth integrating  in  this
  1866.               way.
  1867.  
  1868.               If  all  calls  to a given function are integrated,
  1869.               and the function is declared ssttaattiicc, then GCC  nor-
  1870.               mally  does  not  output  the function as assembler
  1871.               code in its own right.
  1872.  
  1873.        --ffccaalllleerr--ssaavveess
  1874.               Enable values to be  allocated  in  registers  that
  1875.               will  be  clobbered  by function calls, by emitting
  1876.               extra instructions to save and restore  the  regis-
  1877.               ters  around  such  calls.  Such allocation is done
  1878.               only when it seems to result in  better  code  than
  1879.               would otherwise be produced.
  1880.  
  1881.               This  option  is  enabled by default on certain ma-
  1882.               chines, usually those which have no  call-preserved
  1883.               registers to use instead.
  1884.  
  1885.        --ffkkeeeepp--iinnlliinnee--ffuunnccttiioonnss
  1886.               Even if all calls to a given function are integrat-
  1887.               ed, and the function is declared ssttaattiicc,  neverthe-
  1888.               less output a separate run-time callable version of
  1889.               the function.
  1890.  
  1891.        --ffnnoo--ffuunnccttiioonn--ccssee
  1892.               Do not put function addresses  in  registers;  make
  1893.               each  instruction  that  calls  a constant function
  1894.               contain the function's address explicitly.
  1895.  
  1896.               This option results in  less  efficient  code,  but
  1897.               some  strange hacks that alter the assembler output
  1898.               may be confused by the optimizations performed when
  1899.               this option is not used.
  1900.  
  1901.        --ffnnoo--ppeeeepphhoollee
  1902.               Disable  any  machine-specific  peephole  optimiza-
  1903.               tions.
  1904.  
  1905.        --ffffaasstt--mmaatthh
  1906.               This option allows GCC to violate some ANSI or IEEE
  1907.               rules/specifications  in the interest of optimizing
  1908.               code for speed.  For example, it allows the compil-
  1909.  
  1910.  
  1911.  
  1912. GNU Tools                   1993/10/13                         29
  1913.  
  1914.  
  1915.  
  1916.  
  1917.  
  1918. GCC(1)                      GNU Tools                      GCC(1)
  1919.  
  1920.  
  1921.               er  to  assume  arguments  to the ssqqrrtt function are
  1922.               non-negative numbers.
  1923.  
  1924.               This option should never be turned on by  any  `--OO'
  1925.               option  since it can result in incorrect output for
  1926.               programs which depend on an exact implementation of
  1927.               IEEE  or  ANSI  rules/specifications for math func-
  1928.               tions.
  1929.  
  1930.        The following options control specific optimizations.  The
  1931.        `--OO22'  option  turns  on all of these optimizations except
  1932.        `--ffuunnrroollll--llooooppss' and `--ffuunnrroollll--aallll--llooooppss'.
  1933.  
  1934.        The `--OO' option usually turns on the `--fftthhrreeaadd--jjuummppss'  and
  1935.        `--ffddeellaayyeedd--bbrraanncchh'  options,  but  specific  machines  may
  1936.        change the default optimizations.
  1937.  
  1938.        You can use the following flags in  the  rare  cases  when
  1939.        "fine-tuning" of optimizations to be performed is desired.
  1940.  
  1941.        --ffssttrreennggtthh--rreedduuccee
  1942.               Perform the optimizations of loop  strength  reduc-
  1943.               tion and elimination of iteration variables.
  1944.  
  1945.        --fftthhrreeaadd--jjuummppss
  1946.               Perform  optimizations  where  we check to see if a
  1947.               jump branches to a location where another  compari-
  1948.               son  subsumed  by  the  first is found.  If so, the
  1949.               first branch is redirected to either  the  destina-
  1950.               tion  of  the  second branch or a point immediately
  1951.               following it, depending on whether the condition is
  1952.               known to be true or false.
  1953.  
  1954.        --ffuunnrroollll--llooooppss
  1955.               Perform  the  optimization of loop unrolling.  This
  1956.               is only done for loops whose number  of  iterations
  1957.               can be determined at compile time or run time.
  1958.  
  1959.        --ffuunnrroollll--aallll--llooooppss
  1960.               Perform  the  optimization of loop unrolling.  This
  1961.               is done for all loops.  This usually makes programs
  1962.               run more slowly.
  1963.  
  1964.        --ffccssee--ffoollllooww--jjuummppss
  1965.               In  common  subexpression elimination, scan through
  1966.               jump instructions when the target of  the  jump  is
  1967.               not  reached  by any other path.  For example, when
  1968.               CSE encounters an iiff statement with an eellssee clause,
  1969.               CSE  will follow the jump when the condition tested
  1970.               is false.
  1971.  
  1972.        --ffccssee--sskkiipp--bblloocckkss
  1973.               This is similar to `--ffccssee--ffoollllooww--jjuummppss', but causes
  1974.               CSE  to  follow jumps which conditionally skip over
  1975.  
  1976.  
  1977.  
  1978. GNU Tools                   1993/10/13                         30
  1979.  
  1980.  
  1981.  
  1982.  
  1983.  
  1984. GCC(1)                      GNU Tools                      GCC(1)
  1985.  
  1986.  
  1987.               blocks.  When CSE encounters a simple iiff  statement
  1988.               with no else clause, `--ffccssee--sskkiipp--bblloocckkss' causes CSE
  1989.               to follow the jump around the body of the iiff.
  1990.  
  1991.        --ffrreerruunn--ccssee--aafftteerr--lloooopp
  1992.               Re-run common subexpression elimination after  loop
  1993.               optimizations has been performed.
  1994.  
  1995.        --ffeelliiddee--ccoonnssttrruuccttoorrss
  1996.               Elide  constructors  when this seems plausible (C++
  1997.               only).  With this flag, GNU C++ initializes  yy  di-
  1998.               rectly from the call to ffoooo without going through a
  1999.               temporary in the following code:
  2000.  
  2001.               A foo (); A y = foo ();
  2002.  
  2003.               Without this option, GNU C++ first initializes yy by
  2004.               calling  the  appropriate  constructor  for type AA;
  2005.               then assigns the result of ffoooo to a temporary; and,
  2006.               finally, replaces the initial value of `yy' with the
  2007.               temporary.
  2008.  
  2009.               The default behavior (`--ffnnoo--eelliiddee--ccoonnssttrruuccttoorrss') is
  2010.               specified  by the draft ANSI C++ standard.  If your
  2011.               program's constructors  have  side  effects,  using
  2012.               `--ffeelliiddee--ccoonnssttrruuccttoorrss'  can  make  your program act
  2013.               differently, since some constructor  calls  may  be
  2014.               omitted.
  2015.  
  2016.        --ffeexxppeennssiivvee--ooppttiimmiizzaattiioonnss
  2017.               Perform  a  number  of minor optimizations that are
  2018.               relatively expensive.
  2019.  
  2020.        --ffddeellaayyeedd--bbrraanncchh
  2021.               If supported for the target machine, attempt to re-
  2022.               order  instructions  to  exploit  instruction slots
  2023.               available after delayed branch instructions.
  2024.  
  2025.        --ffsscchheedduullee--iinnssnnss
  2026.               If supported for the target machine, attempt to re-
  2027.               order  instructions  to  eliminate execution stalls
  2028.               due to required data being unavailable.  This helps
  2029.               machines  that  have  slow floating point or memory
  2030.               load instructions by allowing other instructions to
  2031.               be  issued until the result of the load or floating
  2032.               point instruction is required.
  2033.  
  2034.        --ffsscchheedduullee--iinnssnnss22
  2035.               Similar to `--ffsscchheedduullee--iinnssnnss', but requests an  ad-
  2036.               ditional  pass of instruction scheduling after reg-
  2037.               ister allocation has been done.  This is especially
  2038.               useful  on  machines with a relatively small number
  2039.               of registers and  where  memory  load  instructions
  2040.               take more than one cycle.
  2041.  
  2042.  
  2043.  
  2044. GNU Tools                   1993/10/13                         31
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050. GCC(1)                      GNU Tools                      GCC(1)
  2051.  
  2052.  
  2053. TTAARRGGEETT OOPPTTIIOONNSS
  2054.        By  default, GNU CC compiles code for the same type of ma-
  2055.        chine that you are using.  However, it  can  also  be  in-
  2056.        stalled  as  a  cross-compiler,  to compile for some other
  2057.        type of machine.  In fact,  several  different  configura-
  2058.        tions of GNU CC, for different target machines, can be in-
  2059.        stalled side by side.  Then you specify which one  to  use
  2060.        with the `--bb' option.
  2061.  
  2062.        In addition, older and newer versions of GNU CC can be in-
  2063.        stalled side by side.  One of them (probably  the  newest)
  2064.        will be the default, but you may sometimes wish to use an-
  2065.        other.
  2066.  
  2067.        --bb _m_a_c_h_i_n_e
  2068.               The argument _m_a_c_h_i_n_e specifies the  target  machine
  2069.               for  compilation.  This is useful when you have in-
  2070.               stalled GNU CC as a cross-compiler.
  2071.  
  2072.               The value to use for _m_a_c_h_i_n_e is  the  same  as  was
  2073.               specified  as the machine type when configuring GNU
  2074.               CC as a cross-compiler.  For example, if  a  cross-
  2075.               compiler  was  configured  with  `ccoonnffiigguurree i386v',
  2076.               meaning to compile for an 80386 running  System  V,
  2077.               then you would specify `--bb ii338866vv' to run that cross
  2078.               compiler.
  2079.  
  2080.               When you do not specify `--bb', it normally means  to
  2081.               compile  for  the same type of machine that you are
  2082.               using.
  2083.  
  2084.        --VV _v_e_r_s_i_o_n
  2085.               The argument _v_e_r_s_i_o_n specifies which version of GNU
  2086.               CC  to  run.  This is useful when multiple versions
  2087.               are  installed.   For  example,  _v_e_r_s_i_o_n  might  be
  2088.               `22..00', meaning to run GNU CC version 2.0.
  2089.  
  2090.               The  default version, when you do not specify `--VV',
  2091.               is controlled by the way GNU CC is installed.  Nor-
  2092.               mally, it will be a version that is recommended for
  2093.               general use.
  2094.  
  2095. MMAACCHHIINNEE DDEEPPEENNDDEENNTT OOPPTTIIOONNSS
  2096.        Each of the target machine types can have its own  special
  2097.        options, starting with `--mm', to choose among various hard-
  2098.        ware  models  or  configurations--for  example,  68010  vs
  2099.        68020,  floating  coprocessor or none.  A single installed
  2100.        version of the compiler can compile for any model or  con-
  2101.        figuration, according to the options specified.
  2102.  
  2103.        Some configurations of the compiler also support addition-
  2104.        al special options, usually for command-line compatibility
  2105.        with other compilers on the same platform.
  2106.  
  2107.  
  2108.  
  2109.  
  2110. GNU Tools                   1993/10/13                         32
  2111.  
  2112.  
  2113.  
  2114.  
  2115.  
  2116. GCC(1)                      GNU Tools                      GCC(1)
  2117.  
  2118.  
  2119.        These are the `--mm' options defined for the 68000 series:
  2120.  
  2121.        --mm6688000000
  2122.  
  2123.        --mmcc6688000000
  2124.               Generate  output  for a 68000.  This is the default
  2125.               when the compiler  is  configured  for  68000-based
  2126.               systems.
  2127.  
  2128.        --mm6688002200
  2129.  
  2130.        --mmcc6688002200
  2131.               Generate  output for a 68020 (rather than a 68000).
  2132.               This is the default when the compiler is configured
  2133.               for 68020-based systems.
  2134.  
  2135.        --mm6688888811
  2136.               Generate  output  containing 68881 instructions for
  2137.               floating point.   This  is  the  default  for  most
  2138.               68020-based  systems unless --nnffpp was specified when
  2139.               the compiler was configured.
  2140.  
  2141.        --mm6688003300
  2142.               Generate output for a 68030.  This is  the  default
  2143.               when  the  compiler  is  configured for 68030-based
  2144.               systems.
  2145.  
  2146.        --mm6688004400
  2147.               Generate output for a 68040.  This is  the  default
  2148.               when  the  compiler  is  configured for 68040-based
  2149.               systems.
  2150.  
  2151.        --mm6688002200--4400
  2152.               Generate output for a 68040, without using  any  of
  2153.               the  new  instructions.  This results in code which
  2154.               can  run  relatively  efficiently   on   either   a
  2155.               68020/68881 or a 68030 or a 68040.
  2156.  
  2157.        --mmffppaa  Generate output containing Sun FPA instructions for
  2158.               floating point.
  2159.  
  2160.        --mmssoofftt--ffllooaatt
  2161.               Generate output containing library calls for float-
  2162.               ing  point.   _W_A_R_N_I_N_G_:  the requisite libraries are
  2163.               not part of GNU CC.  Normally the facilities of the
  2164.               machine's usual C compiler are used, but this can't
  2165.               be done directly in  cross-compilation.   You  must
  2166.               make  your own arrangements to provide suitable li-
  2167.               brary functions for cross-compilation.
  2168.  
  2169.        --mmsshhoorrtt
  2170.               Consider type iinntt to be 16 bits  wide,  like  sshhoorrtt
  2171.               iinntt.
  2172.  
  2173.  
  2174.  
  2175.  
  2176. GNU Tools                   1993/10/13                         33
  2177.  
  2178.  
  2179.  
  2180.  
  2181.  
  2182. GCC(1)                      GNU Tools                      GCC(1)
  2183.  
  2184.  
  2185.        --mmnnoobbiittffiieelldd
  2186.               Do  not  use the bit-field instructions.  `--mm6688000000'
  2187.               implies `--mmnnoobbiittffiieelldd'.
  2188.  
  2189.        --mmbbiittffiieelldd
  2190.               Do use the bit-field instructions.   `--mm6688002200'  im-
  2191.               plies `--mmbbiittffiieelldd'.  This is the default if you use
  2192.               the unmodified sources.
  2193.  
  2194.        --mmrrttdd  Use a  different  function-calling  convention,  in
  2195.               which  functions  that take a fixed number of argu-
  2196.               ments return with the rrttdd instruction,  which  pops
  2197.               their  arguments  while  returning.  This saves one
  2198.               instruction in the caller since there is no need to
  2199.               pop the arguments there.
  2200.  
  2201.               This  calling  convention  is incompatible with the
  2202.               one normally used on Unix, so you cannot use it  if
  2203.               you  need  to call libraries compiled with the Unix
  2204.               compiler.
  2205.  
  2206.               Also, you must provide function prototypes for  all
  2207.               functions  that  take variable numbers of arguments
  2208.               (including pprriinnttff); otherwise incorrect  code  will
  2209.               be generated for calls to those functions.
  2210.  
  2211.               In  addition,  seriously incorrect code will result
  2212.               if you call a function  with  too  many  arguments.
  2213.               (Normally, extra arguments are harmlessly ignored.)
  2214.  
  2215.               The rrttdd instruction is supported by the  68010  and
  2216.               68020 processors, but not by the 68000.
  2217.  
  2218.        These `--mm' options are defined for the Vax:
  2219.  
  2220.        --mmuunniixx Do not output certain jump instructions (aaoobblleeqq and
  2221.               so on) that the Unix assembler for the  Vax  cannot
  2222.               handle across long ranges.
  2223.  
  2224.        --mmggnnuu  Do  output  those jump instructions, on the assump-
  2225.               tion that you will assemble with the GNU assembler.
  2226.  
  2227.        --mmgg    Output code for g-format floating point numbers in-
  2228.               stead of d-format.
  2229.  
  2230.        These `--mm' switches are supported on the SPARC:
  2231.  
  2232.        --mmffppuu
  2233.  
  2234.        --mmhhaarrdd--ffllooaatt
  2235.               Generate output containing floating point  instruc-
  2236.               tions.  This is the default.
  2237.  
  2238.        --mmnnoo--ffppuu
  2239.  
  2240.  
  2241.  
  2242. GNU Tools                   1993/10/13                         34
  2243.  
  2244.  
  2245.  
  2246.  
  2247.  
  2248. GCC(1)                      GNU Tools                      GCC(1)
  2249.  
  2250.  
  2251.        --mmssoofftt--ffllooaatt
  2252.               Generate output containing library calls for float-
  2253.               ing point.  _W_a_r_n_i_n_g_: there is no GNU floating-point
  2254.               library  for SPARC.  Normally the facilities of the
  2255.               machine's usual C compiler are used, but this  can-
  2256.               not  be  done  directly  in cross-compilation.  You
  2257.               must make your own arrangements to provide suitable
  2258.               library functions for cross-compilation.
  2259.  
  2260.               --mmssoofftt--ffllooaatt  changes the calling convention in the
  2261.               output file; therefore, it is only  useful  if  you
  2262.               compile _a_l_l of a program with this option.
  2263.  
  2264.        --mmnnoo--eeppiilloogguuee
  2265.  
  2266.        --mmeeppiilloogguuee
  2267.               With  --mmeeppiilloogguuee (the default), the compiler always
  2268.               emits code for function exit at  the  end  of  each
  2269.               function.   Any  function exit in the middle of the
  2270.               function (such as a return  statement  in  C)  will
  2271.               generate  a jump to the exit code at the end of the
  2272.               function.
  2273.  
  2274.               With --mmnnoo--eeppiilloogguuee, the compiler tries to emit exit
  2275.               code inline at every function exit.
  2276.  
  2277.        --mmnnoo--vv88
  2278.  
  2279.        --mmvv88
  2280.  
  2281.        --mmssppaarrcclliittee
  2282.               These  three options select variations on the SPARC
  2283.               architecture.
  2284.  
  2285.               By default (unless specifically configured for  the
  2286.               Fujitsu  SPARClite),  GCC generates code for the v7
  2287.               variant of the SPARC architecture.
  2288.  
  2289.               --mmvv88 will give you SPARC v8 code.  The only differ-
  2290.               ence  from  v7  code is that the compiler emits the
  2291.               integer multiply and  integer  divide  instructions
  2292.               which exist in SPARC v8 but not in SPARC v7.
  2293.  
  2294.               --mmssppaarrcclliittee  will  give  you  SPARClite code.  This
  2295.               adds the integer multiply, integer divide step  and
  2296.               scan  (ffs)  instructions  which exist in SPARClite
  2297.               but not in SPARC v7.
  2298.  
  2299.        --mmccyypprreessss
  2300.  
  2301.        --mmssuuppeerrssppaarrcc
  2302.               These two options select the  processor  for  which
  2303.               the code is optimised.
  2304.  
  2305.  
  2306.  
  2307.  
  2308. GNU Tools                   1993/10/13                         35
  2309.  
  2310.  
  2311.  
  2312.  
  2313.  
  2314. GCC(1)                      GNU Tools                      GCC(1)
  2315.  
  2316.  
  2317.               With --mmccyypprreessss (the default), the compiler optimis-
  2318.               es code for the Cypress CY7C602 chip,  as  used  in
  2319.               the  SparcStation/SparcServer  3xx  series. This is
  2320.               also appropriate for the older SparcStation  1,  2,
  2321.               IPX etc.
  2322.  
  2323.               With  --mmssuuppeerrssppaarrcc  the compiler optimises code for
  2324.               the SuperSparc cpu, as used in the SparcStation 10,
  2325.               1000 and 2000 series. This flag also enables use of
  2326.               the full SPARC v8 instruction set.
  2327.  
  2328.        These `--mm' options are defined for the Convex:
  2329.  
  2330.        --mmcc11   Generate output for a C1.  This is the default when
  2331.               the compiler is configured for a C1.
  2332.  
  2333.        --mmcc22   Generate output for a C2.  This is the default when
  2334.               the compiler is configured for a C2.
  2335.  
  2336.        --mmaarrggccoouunntt
  2337.               Generate code which puts an argument count  in  the
  2338.               word  preceding  each  argument  list.   Some  non-
  2339.               portable Convex and Vax programs  need  this  word.
  2340.               (Debuggers  don't,  except for functions with vari-
  2341.               able-length argument lists; this  info  is  in  the
  2342.               symbol table.)
  2343.  
  2344.        --mmnnooaarrggccoouunntt
  2345.               Omit  the argument count word.  This is the default
  2346.               if you use the unmodified sources.
  2347.  
  2348.        These `--mm' options are defined for the AMD Am29000:
  2349.  
  2350.        --mmddww   Generate code that assumes the DW bit is set, i.e.,
  2351.               that byte and halfword operations are directly sup-
  2352.               ported by the hardware.  This is the default.
  2353.  
  2354.        --mmnnooddww Generate code that assumes the DW bit is not set.
  2355.  
  2356.        --mmbbww   Generate code that assumes the system supports byte
  2357.               and  halfword  write  operations.   This is the de-
  2358.               fault.
  2359.  
  2360.        --mmnnbbww  Generate code that assumes  the  systems  does  not
  2361.               support  byte  and halfword write operations.  This
  2362.               implies `--mmnnooddww'.
  2363.  
  2364.        --mmssmmaallll
  2365.               Use a small memory  model  that  assumes  that  all
  2366.               function  addresses  are either within a single 256
  2367.               KB segment or at an absolute address of  less  than
  2368.               256K.   This allows the ccaallll instruction to be used
  2369.               instead of a ccoonnsstt, ccoonnsstthh, ccaallllii sequence.
  2370.  
  2371.  
  2372.  
  2373.  
  2374. GNU Tools                   1993/10/13                         36
  2375.  
  2376.  
  2377.  
  2378.  
  2379.  
  2380. GCC(1)                      GNU Tools                      GCC(1)
  2381.  
  2382.  
  2383.        --mmllaarrggee
  2384.               Do not assume that  the  ccaallll  instruction  can  be
  2385.               used; this is the default.
  2386.  
  2387.        --mm2299005500
  2388.               Generate code for the Am29050.
  2389.  
  2390.        --mm2299000000
  2391.               Generate  code  for  the  Am29000.  This is the de-
  2392.               fault.
  2393.  
  2394.        --mmkkeerrnneell--rreeggiisstteerrss
  2395.               Generate references to registers ggrr6644--ggrr9955  instead
  2396.               of  ggrr9966--ggrr112277.   This option can be used when com-
  2397.               piling kernel code that wants a set of global  reg-
  2398.               isters disjoint from that used by user-mode code.
  2399.  
  2400.               Note  that when this option is used, register names
  2401.               in `--ff'  flags  must  use  the  normal,  user-mode,
  2402.               names.
  2403.  
  2404.        --mmuusseerr--rreeggiisstteerrss
  2405.               Use the normal set of global registers, ggrr9966--ggrr112277.
  2406.               This is the default.
  2407.  
  2408.        --mmssttaacckk--cchheecckk
  2409.               Insert a call to ____mmsspp__cchheecckk after each  stack  ad-
  2410.               justment.  This is often used for kernel code.
  2411.  
  2412.        These  `--mm' options are defined for Motorola 88K architec-
  2413.        tures:
  2414.  
  2415.        --mm8888000000
  2416.               Generate code that works well on  both  the  m88100
  2417.               and the m88110.
  2418.  
  2419.        --mm8888110000
  2420.               Generate  code  that works best for the m88100, but
  2421.               that also runs on the m88110.
  2422.  
  2423.        --mm8888111100
  2424.               Generate code that works best for the  m88110,  and
  2425.               may not run on the m88100.
  2426.  
  2427.        --mmiiddeennttiiffyy--rreevviissiioonn
  2428.               Include  an iiddeenntt directive in the assembler output
  2429.               recording the source file name, compiler  name  and
  2430.               version, timestamp, and compilation flags used.
  2431.  
  2432.        --mmnnoo--uunnddeerrssccoorreess
  2433.               In  assembler  output,  emit  symbol  names without
  2434.               adding an underscore character at the beginning  of
  2435.               each  name.  The default is to use an underscore as
  2436.               prefix on each name.
  2437.  
  2438.  
  2439.  
  2440. GNU Tools                   1993/10/13                         37
  2441.  
  2442.  
  2443.  
  2444.  
  2445.  
  2446. GCC(1)                      GNU Tools                      GCC(1)
  2447.  
  2448.  
  2449.        --mmnnoo--cchheecckk--zzeerroo--ddiivviissiioonn
  2450.  
  2451.        --mmcchheecckk--zzeerroo--ddiivviissiioonn
  2452.               Early models of the 88K architecture  had  problems
  2453.               with  division by zero; in particular, many of them
  2454.               didn't trap.  Use these options to avoid  including
  2455.               (or  to  include explicitly) additional code to de-
  2456.               tect division by zero and signal an exception.  All
  2457.               GCC     configurations     for    the    88K    use
  2458.               `--mmcchheecckk--zzeerroo--ddiivviissiioonn' by default.
  2459.  
  2460.        --mmooccss--ddeebbuugg--iinnffoo
  2461.  
  2462.        --mmnnoo--ooccss--ddeebbuugg--iinnffoo
  2463.               Include (or omit) additional debugging  information
  2464.               (about registers used in each stack frame) as spec-
  2465.               ified in the 88Open Object Compatibility  Standard,
  2466.               "OCS".   This  extra  information  is not needed by
  2467.               GDB.  The default for DG/UX,  SVr4,  and  Delta  88
  2468.               SVr3.2  is  to  include this information; other 88k
  2469.               configurations omit this information by default.
  2470.  
  2471.        --mmooccss--ffrraammee--ppoossiittiioonn
  2472.  
  2473.        --mmnnoo--ooccss--ffrraammee--ppoossiittiioonn
  2474.               Force (or do not require)  register  values  to  be
  2475.               stored  in  a  particular place in stack frames, as
  2476.               specified in OCS.  The DG/UX, Delta88  SVr3.2,  and
  2477.               BCS configurations use `--mmooccss--ffrraammee--ppoossiittiioonn'; oth-
  2478.               er   88k   configurations    have    the    default
  2479.               `--mmnnoo--ooccss--ffrraammee--ppoossiittiioonn'.
  2480.  
  2481.        --mmooppttiimmiizzee--aarrgg--aarreeaa
  2482.  
  2483.        --mmnnoo--ooppttiimmiizzee--aarrgg--aarreeaa
  2484.               Control  how  to  store function arguments in stack
  2485.               frames.  `--mmooppttiimmiizzee--aarrgg--aarreeaa' saves space, but may
  2486.               break      some      debuggers      (not      GDB).
  2487.               `--mmnnoo--ooppttiimmiizzee--aarrgg--aarreeaa' conforms better  to  stan-
  2488.               dards.   By default GCC does not optimize the argu-
  2489.               ment area.
  2490.  
  2491.        --mmsshhoorrtt--ddaattaa--_n_u_m
  2492.               _n_u_m Generate smaller data references by making them
  2493.               relative  to rr00, which allows loading a value using
  2494.               a single instruction (rather than the  usual  two).
  2495.               You  control  which data references are affected by
  2496.               specifying _n_u_m with this option.  For  example,  if
  2497.               you  specify `--mmsshhoorrtt--ddaattaa--551122', then the data ref-
  2498.               erences affected are those involving  displacements
  2499.               of  less than 512 bytes.  `--mmsshhoorrtt--ddaattaa--_n_u_m' is not
  2500.               effective for _n_u_m greater than 64K.
  2501.  
  2502.        --mmsseerriiaalliizzee--vvoollaattiillee
  2503.  
  2504.  
  2505.  
  2506. GNU Tools                   1993/10/13                         38
  2507.  
  2508.  
  2509.  
  2510.  
  2511.  
  2512. GCC(1)                      GNU Tools                      GCC(1)
  2513.  
  2514.  
  2515.        --mmnnoo--sseerriiaalliizzee--vvoollaattiillee
  2516.               Do, or do not, generate code to  guarantee  sequen-
  2517.               tial consistency of volatile memory references.
  2518.  
  2519.               GNU  CC  always  guarantees consistency by default,
  2520.               for the preferred processor submodel.  How this  is
  2521.               done depends on the submodel.
  2522.  
  2523.               The m88100 processor does not reorder memory refer-
  2524.               ences and so always provides sequential  consisten-
  2525.               cy.  If you use `--mm8888110000', GNU CC does not generate
  2526.               any special instructions for sequential  consisten-
  2527.               cy.
  2528.  
  2529.               The  order  of memory references made by the m88110
  2530.               processor does not always match the  order  of  the
  2531.               instructions  requesting those references.  In par-
  2532.               ticular, a load instruction may  execute  before  a
  2533.               preceding  store instruction.  Such reordering vio-
  2534.               lates sequential  consistency  of  volatile  memory
  2535.               references,  when  there  are  multiple processors.
  2536.               When you use `--mm8888000000' or `--mm8888111100', GNU CC  gener-
  2537.               ates  special  instructions  when  appropriate,  to
  2538.               force execution in the proper order.
  2539.  
  2540.               The extra code generated to  guarantee  consistency
  2541.               may affect the performance of your application.  If
  2542.               you know that you can safely forgo this  guarantee,
  2543.               you may use the option `--mmnnoo--sseerriiaalliizzee--vvoollaattiillee'.
  2544.  
  2545.               If you use the `--mm8888110000' option but require sequen-
  2546.               tial consistency when running on the m88110 proces-
  2547.               sor, you should use `--mmsseerriiaalliizzee--vvoollaattiillee'.
  2548.  
  2549.        --mmssvvrr44
  2550.  
  2551.        --mmssvvrr33 Turn  on  (`--mmssvvrr44') or off (`--mmssvvrr33') compiler ex-
  2552.               tensions related to  System  V  release  4  (SVr4).
  2553.               This controls the following:
  2554.  
  2555.           +o   Which  variant  of  the  assembler  syntax  to emit
  2556.               (which   you   can   select   independently   using
  2557.               `--mmvveerrssiioonn--0033..0000').
  2558.  
  2559.           +o   `--mmssvvrr44' makes the C preprocessor recognize `##pprraagg--
  2560.               mmaa wweeaakk'
  2561.  
  2562.           +o   `--mmssvvrr44' makes GCC issue additional declaration di-
  2563.               rectives used in SVr4.
  2564.  
  2565.        `--mmssvvrr33' is the default for all m88K configurations except
  2566.        the SVr4 configuration.
  2567.  
  2568.  
  2569.  
  2570.  
  2571.  
  2572. GNU Tools                   1993/10/13                         39
  2573.  
  2574.  
  2575.  
  2576.  
  2577.  
  2578. GCC(1)                      GNU Tools                      GCC(1)
  2579.  
  2580.  
  2581.        --mmttrraapp--llaarrggee--sshhiifftt
  2582.  
  2583.        --mmhhaannddllee--llaarrggee--sshhiifftt
  2584.               Include code to detect bit-shifts of more  than  31
  2585.               bits;  respectively,  trap such shifts or emit code
  2586.               to handle them properly.  By default GCC  makes  no
  2587.               special provision for large bit shifts.
  2588.  
  2589.        --mmuussee--ddiivv--iinnssttrruuccttiioonn
  2590.               Very  early  models  of the 88K architecture didn't
  2591.               have a divide instruction, so GCC avoids  that  in-
  2592.               struction  by  default.  Use this option to specify
  2593.               that it's safe to use the divide instruction.
  2594.  
  2595.        --mmvveerrssiioonn--0033..0000
  2596.               In the DG/UX configuration, there are  two  flavors
  2597.               of  SVr4.   This  option  modifies --mmssvvrr44 to select
  2598.               whether the hybrid-COFF or real-ELF flavor is used.
  2599.               All other configurations ignore this option.
  2600.  
  2601.        --mmwwaarrnn--ppaasssseedd--ssttrruuccttss
  2602.               Warn when a function passes a struct as an argument
  2603.               or  result.   Structure-passing  conventions   have
  2604.               changed during the evolution of the C language, and
  2605.               are often the source of portability  problems.   By
  2606.               default, GCC issues no such warning.
  2607.  
  2608.        These options are defined for the IBM RS6000:
  2609.  
  2610.        --mmffpp--iinn--ttoocc
  2611.  
  2612.        --mmnnoo--ffpp--iinn--ttoocc
  2613.               Control  whether or not floating-point constants go
  2614.               in the Table of Contents  (TOC),  a  table  of  all
  2615.               global variable and function addresses.  By default
  2616.               GCC puts floating-point constants there; if the TOC
  2617.               overflows, `--mmnnoo--ffpp--iinn--ttoocc' will reduce the size of
  2618.               the TOC, which may avoid the overflow.
  2619.  
  2620.        These `--mm' options are defined for the IBM RT PC:
  2621.  
  2622.        --mmiinn--lliinnee--mmuull
  2623.               Use an in-line code  sequence  for  integer  multi-
  2624.               plies.  This is the default.
  2625.  
  2626.        --mmccaallll--lliibb--mmuull
  2627.               Call llmmuull$$$$ for integer multiples.
  2628.  
  2629.        --mmffuullll--ffpp--bblloocckkss
  2630.               Generate  full-size floating point data blocks, in-
  2631.               cluding the minimum amount of scratch space  recom-
  2632.               mended by IBM.  This is the default.
  2633.  
  2634.  
  2635.  
  2636.  
  2637.  
  2638. GNU Tools                   1993/10/13                         40
  2639.  
  2640.  
  2641.  
  2642.  
  2643.  
  2644. GCC(1)                      GNU Tools                      GCC(1)
  2645.  
  2646.  
  2647.        --mmmmiinniimmuumm--ffpp--bblloocckkss
  2648.               Do  not  include  extra  scratch  space in floating
  2649.               point data blocks.  This results in  smaller  code,
  2650.               but  slower  execution, since scratch space must be
  2651.               allocated dynamically.
  2652.  
  2653.        --mmffpp--aarrgg--iinn--ffpprreeggss
  2654.               Use a calling sequence incompatible  with  the  IBM
  2655.               calling  convention  in  which floating point argu-
  2656.               ments are passed in floating point registers.  Note
  2657.               that  vvaarraarrggss..hh  and  ssttddaarrggss..hh  will not work with
  2658.               floating point operands if this  option  is  speci-
  2659.               fied.
  2660.  
  2661.        --mmffpp--aarrgg--iinn--ggrreeggss
  2662.               Use  the  normal  calling  convention  for floating
  2663.               point arguments.  This is the default.
  2664.  
  2665.        --mmhhcc--ssttrruucctt--rreettuurrnn
  2666.               Return structures of more than one word in  memory,
  2667.               rather  than in a register.  This provides compati-
  2668.               bility with the MetaWare HighC (hc) compiler.   Use
  2669.               `--ffppcccc--ssttrruucctt--rreettuurrnn'  for  compatibility  with the
  2670.               Portable C Compiler (pcc).
  2671.  
  2672.        --mmnnoohhcc--ssttrruucctt--rreettuurrnn
  2673.               Return some structures of more  than  one  word  in
  2674.               registers,  when  convenient.  This is the default.
  2675.               For compatibility with the IBM-supplied  compilers,
  2676.               use       either      `--ffppcccc--ssttrruucctt--rreettuurrnn'      or
  2677.               `--mmhhcc--ssttrruucctt--rreettuurrnn'.
  2678.  
  2679.        These `--mm' options are defined for the MIPS family of com-
  2680.        puters:
  2681.  
  2682.        --mmccppuu==_c_p_u_-_t_y_p_e
  2683.               Assume  the  defaults for the machine type _c_p_u_-_t_y_p_e
  2684.               when scheduling instructions.  The default _c_p_u_-_t_y_p_e
  2685.               is  ddeeffaauulltt,  which  picks the longest cycles times
  2686.               for any of the machines, in order that the code run
  2687.               at  reasonable  rates  on  all  MIPS  cpu's.  Other
  2688.               choices for _c_p_u_-_t_y_p_e are rr22000000, rr33000000,  rr44000000,  and
  2689.               rr66000000.   While  picking  a  specific  _c_p_u_-_t_y_p_e will
  2690.               schedule things appropriately for  that  particular
  2691.               chip,  the compiler will not generate any code that
  2692.               does not meet level 1 of the MIPS ISA  (instruction
  2693.               set  architecture)  without  the  --mmiippss22  or --mmiippss33
  2694.               switches being used.
  2695.  
  2696.        --mmiippss22 Issue instructions from level 2  of  the  MIPS  ISA
  2697.               (branch  likely,  square  root  instructions).  The
  2698.               --mmccppuu==rr44000000 or --mmccppuu==rr66000000 switch must be  used  in
  2699.               conjunction with --mmiippss22.
  2700.  
  2701.  
  2702.  
  2703.  
  2704. GNU Tools                   1993/10/13                         41
  2705.  
  2706.  
  2707.  
  2708.  
  2709.  
  2710. GCC(1)                      GNU Tools                      GCC(1)
  2711.  
  2712.  
  2713.        --mmiippss33 Issue instructions from level 3 of the MIPS ISA (64
  2714.               bit instructions).  The --mmccppuu==rr44000000 switch must  be
  2715.               used in conjunction with --mmiippss22.
  2716.  
  2717.        --mmiinntt6644
  2718.  
  2719.        --mmlloonngg6644
  2720.  
  2721.        --mmlloonngglloonngg112288
  2722.               These options don't work at present.
  2723.  
  2724.        --mmmmiippss--aass
  2725.               Generate  code  for  the MIPS assembler, and invoke
  2726.               mmiippss--ttffiillee to add normal debug  information.   This
  2727.               is  the  default  for  all platforms except for the
  2728.               OSF/1 reference platform, using the OSF/rose object
  2729.               format.   If any of the --ggggddbb, --ggssttaabbss, or --ggssttaabbss++
  2730.               switches are used, the mmiippss--ttffiillee program will  en-
  2731.               capsulate the stabs within MIPS ECOFF.
  2732.  
  2733.        --mmggaass  Generate  code  for the GNU assembler.  This is the
  2734.               default on the OSF/1 reference platform, using  the
  2735.               OSF/rose object format.
  2736.  
  2737.        --mmrrnnaammeess
  2738.  
  2739.        --mmnnoo--rrnnaammeess
  2740.               The  --mmrrnnaammeess  switch says to output code using the
  2741.               MIPS software names for the registers,  instead  of
  2742.               the hardware names (ie, aa00 instead of $$44).  The GNU
  2743.               assembler does not support the --mmrrnnaammeess switch, and
  2744.               the  MIPS  assembler  will be instructed to run the
  2745.               MIPS C preprocessor  over  the  source  file.   The
  2746.               --mmnnoo--rrnnaammeess switch is default.
  2747.  
  2748.        --mmggppoopptt
  2749.  
  2750.        --mmnnoo--ggppoopptt
  2751.               The  --mmggppoopptt  switch  says to write all of the data
  2752.               declarations before the instructions  in  the  text
  2753.               section,  to all the MIPS assembler to generate one
  2754.               word memory references instead of using  two  words
  2755.               for  short global or static data items.  This is on
  2756.               by default if optimization is selected.
  2757.  
  2758.        --mmssttaattss
  2759.  
  2760.        --mmnnoo--ssttaattss
  2761.               For each non-inline function processed, the --mmssttaattss
  2762.               switch  causes the compiler to emit one line to the
  2763.               standard error file to print statistics  about  the
  2764.               program  (number  of  registers  saved, stack size,
  2765.               etc.).
  2766.  
  2767.  
  2768.  
  2769.  
  2770. GNU Tools                   1993/10/13                         42
  2771.  
  2772.  
  2773.  
  2774.  
  2775.  
  2776. GCC(1)                      GNU Tools                      GCC(1)
  2777.  
  2778.  
  2779.        --mmmmeemmccppyy
  2780.  
  2781.        --mmnnoo--mmeemmccppyy
  2782.               The --mmmmeemmccppyy switch makes all block moves call  the
  2783.               appropriate  string  function (mmeemmccppyy or bbccooppyy) in-
  2784.               stead of possibly generating inline code.
  2785.  
  2786.        --mmmmiippss--ttffiillee
  2787.  
  2788.        --mmnnoo--mmiippss--ttffiillee
  2789.               The --mmnnoo--mmiippss--ttffiillee switch causes the compiler  not
  2790.               postprocess  the  object  file  with the mmiippss--ttffiillee
  2791.               program, after the MIPS assembler has generated  it
  2792.               to  add  debug  support.  If mmiippss--ttffiillee is not run,
  2793.               then no local variables will be  available  to  the
  2794.               debugger.   In  addition, ssttaaggee22 and ssttaaggee33 objects
  2795.               will have the temporary file names  passed  to  the
  2796.               assembler  embedded in the object file, which means
  2797.               the objects will not compare the same.
  2798.  
  2799.        --mmssoofftt--ffllooaatt
  2800.               Generate output containing library calls for float-
  2801.               ing  point.   _W_A_R_N_I_N_G_:  the requisite libraries are
  2802.               not part of GNU CC.  Normally the facilities of the
  2803.               machine's usual C compiler are used, but this can't
  2804.               be done directly in  cross-compilation.   You  must
  2805.               make  your own arrangements to provide suitable li-
  2806.               brary functions for cross-compilation.
  2807.  
  2808.        --mmhhaarrdd--ffllooaatt
  2809.               Generate output containing floating point  instruc-
  2810.               tions.   This is the default if you use the unmodi-
  2811.               fied sources.
  2812.  
  2813.        --mmffpp6644 Assume that the FFRR bit in the status  word  is  on,
  2814.               and  that there are 32 64-bit floating point regis-
  2815.               ters, instead of 32 32-bit  floating  point  regis-
  2816.               ters.   You  must  also specify the --mmccppuu==rr44000000 and
  2817.               --mmiippss33 switches.
  2818.  
  2819.        --mmffpp3322 Assume that there are 32 32-bit floating point reg-
  2820.               isters.  This is the default.
  2821.  
  2822.        --mmaabbiiccaallllss
  2823.  
  2824.        --mmnnoo--aabbiiccaallllss
  2825.               Emit  (or  do not emit) the ..aabbiiccaallllss, ..ccppllooaadd, and
  2826.               ..ccpprreessttoorree pseudo operations that some  System  V.4
  2827.               ports use for position independent code.
  2828.  
  2829.        --mmhhaallff--ppiicc
  2830.  
  2831.        --mmnnoo--hhaallff--ppiicc
  2832.               The  --mmhhaallff--ppiicc  switch says to put pointers to ex-
  2833.  
  2834.  
  2835.  
  2836. GNU Tools                   1993/10/13                         43
  2837.  
  2838.  
  2839.  
  2840.  
  2841.  
  2842. GCC(1)                      GNU Tools                      GCC(1)
  2843.  
  2844.  
  2845.               tern references into the data section and load them
  2846.               up, rather than put the references in the text sec-
  2847.               tion.  This option does not work at present.  --GG_n_u_m
  2848.               Put  global  and static items less than or equal to
  2849.               _n_u_m bytes into the small data or bss  sections  in-
  2850.               stead  of the normal data or bss section.  This al-
  2851.               lows the assembler to emit one word  memory  refer-
  2852.               ence  instructions  based on the global pointer (ggpp
  2853.               or $$2288), instead of the normal two words used.   By
  2854.               default,  _n_u_m is 8 when the MIPS assembler is used,
  2855.               and 0 when the GNU assembler is  used.   The  --GG_n_u_m
  2856.               switch  is also passed to the assembler and linker.
  2857.               All modules should be compiled with the same  --GG_n_u_m
  2858.               value.
  2859.  
  2860.        --nnooccpppp Tell  the MIPS assembler to not run it's preproces-
  2861.               sor over user assembler files (with a `..ss'  suffix)
  2862.               when assembling them.
  2863.  
  2864.        These  `--mm' options are defined for the Intel 80386 family
  2865.        of computers: --mm448866
  2866.  
  2867.        --mmnnoo--448866
  2868.               Control whether or not code is optimized for a  486
  2869.               instead  of  an 386.  Code generated for a 486 will
  2870.               run on a 386 and vice versa.
  2871.  
  2872.        --mmssoofftt--ffllooaatt
  2873.               Generate output containing library calls for float-
  2874.               ing  point.   _W_a_r_n_i_n_g_:  the requisite libraries are
  2875.               not part of GNU CC.  Normally the facilities of the
  2876.               machine's usual C compiler are used, but this can't
  2877.               be done directly in  cross-compilation.   You  must
  2878.               make  your own arrangements to provide suitable li-
  2879.               brary functions for cross-compilation.
  2880.  
  2881.               On machines where a function returns floating point
  2882.               results  in the 80387 register stack, some floating
  2883.               point opcodes may be emitted even if `--mmssoofftt--ffllooaatt'
  2884.               is used.
  2885.  
  2886.        --mmnnoo--ffpp--rreett--iinn--338877
  2887.               Do  not  use the FPU registers for return values of
  2888.               functions.
  2889.  
  2890.               The usual calling convention has  functions  return
  2891.               values  of  types ffllooaatt and ddoouubbllee in an FPU regis-
  2892.               ter, even if there is no FPU.  The idea is that the
  2893.               operating system should emulate an FPU.
  2894.  
  2895.               The  option `--mmnnoo--ffpp--rreett--iinn--338877' causes such values
  2896.               to be returned in ordinary CPU registers instead.
  2897.  
  2898.        These `--mm' options are defined for the HPPA family of com-
  2899.  
  2900.  
  2901.  
  2902. GNU Tools                   1993/10/13                         44
  2903.  
  2904.  
  2905.  
  2906.  
  2907.  
  2908. GCC(1)                      GNU Tools                      GCC(1)
  2909.  
  2910.  
  2911.        puters:
  2912.  
  2913.        --mmppaa--rriisscc--11--00
  2914.               Generate code for a PA 1.0 processor.
  2915.  
  2916.        --mmppaa--rriisscc--11--11
  2917.               Generate code for a PA 1.1 processor.
  2918.  
  2919.        --mmkkeerrnneell
  2920.               Generate code which is suitable for use in kernels.
  2921.               Specifically, avoid aadddd instructions in  which  one
  2922.               of the arguments is the DP register; generate aaddddiill
  2923.               instructions instead.  This avoids a rather serious
  2924.               bug in the HP-UX linker.
  2925.  
  2926.        --mmsshhaarreedd--lliibbss
  2927.               Generate  code  that  can  be  linked against HP-UX
  2928.               shared libraries.  This option is not  fully  func-
  2929.               tion  yet, and is not on by default for any PA tar-
  2930.               get.  Using this option can cause incorrect code to
  2931.               be generated by the compiler.
  2932.  
  2933.        --mmnnoo--sshhaarreedd--lliibbss
  2934.               Don't  generate  code  that  will be linked against
  2935.               shared libraries.  This is the default for  all  PA
  2936.               targets.
  2937.  
  2938.        --mmlloonngg--ccaallllss
  2939.               Generate  code  which  allows  calls  to  functions
  2940.               greater than 256K away from  the  caller  when  the
  2941.               caller  and callee are in the same source file.  Do
  2942.               not turn this option on unless code refuses to link
  2943.               with "branch out of range errors from the linker.
  2944.  
  2945.        --mmddiissaabbllee--ffpprreeggss
  2946.               Prevent floating point registers from being used in
  2947.               any manner.  This is necessary for  compiling  ker-
  2948.               nels which perform lazy context switching of float-
  2949.               ing point registers.  If you use  this  option  and
  2950.               attempt  to  perform floating point operations, the
  2951.               compiler will abort.
  2952.  
  2953.        --mmddiissaabbllee--iinnddeexxiinngg
  2954.               Prevent the compiler from  using  indexing  address
  2955.               modes.   This  avoids  some rather obscure problems
  2956.               when compiling MIG generated code under MACH.
  2957.  
  2958.        --mmttrraaiilliinngg--ccoolloonn
  2959.               Add a colon to the end of  label  definitions  (for
  2960.               ELF assemblers).
  2961.  
  2962.        These  `--mm' options are defined for the Intel 80960 family
  2963.        of computers:
  2964.  
  2965.  
  2966.  
  2967.  
  2968. GNU Tools                   1993/10/13                         45
  2969.  
  2970.  
  2971.  
  2972.  
  2973.  
  2974. GCC(1)                      GNU Tools                      GCC(1)
  2975.  
  2976.  
  2977.        --mm_c_p_u_-_t_y_p_e
  2978.               Assume the defaults for the machine  type  _c_p_u_-_t_y_p_e
  2979.               for  instruction  and  addressing-mode availability
  2980.               and alignment.  The default _c_p_u_-_t_y_p_e is  kkbb;  other
  2981.               choices are kkaa, mmcc, ccaa, ccff, ssaa, and ssbb.
  2982.  
  2983.        --mmnnuummeerriiccss
  2984.  
  2985.        --mmssoofftt--ffllooaatt
  2986.               The  --mmnnuummeerriiccss option indicates that the processor
  2987.               does  support  floating-point  instructions.    The
  2988.               --mmssoofftt--ffllooaatt  option  indicates that floating-point
  2989.               support should not be assumed.
  2990.  
  2991.        --mmlleeaaff--pprroocceedduurreess
  2992.  
  2993.        --mmnnoo--lleeaaff--pprroocceedduurreess
  2994.               Do (or do not) attempt to alter leaf procedures  to
  2995.               be  callable  with  the  _b_a_l instruction as well as
  2996.               _c_a_l_l.  This will result in more efficient code  for
  2997.               explicit calls when the _b_a_l instruction can be sub-
  2998.               stituted by the assembler or linker, but less effi-
  2999.               cient  code in other cases, such as calls via func-
  3000.               tion pointers, or using a linker that doesn't  sup-
  3001.               port this optimization.
  3002.  
  3003.        --mmttaaiill--ccaallll
  3004.  
  3005.        --mmnnoo--ttaaiill--ccaallll
  3006.               Do  (or  do  not)  make additional attempts (beyond
  3007.               those of the machine-independent  portions  of  the
  3008.               compiler)  to  optimize  tail-recursive  calls into
  3009.               branches.  You may not want to do this because  the
  3010.               detection  of  cases where this is not valid is not
  3011.               totally complete.  The default is --mmnnoo--ttaaiill--ccaallll.
  3012.  
  3013.        --mmccoommpplleexx--aaddddrr
  3014.  
  3015.        --mmnnoo--ccoommpplleexx--aaddddrr
  3016.               Assume (or do not assume) that the use of a complex
  3017.               addressing  mode is a win on this implementation of
  3018.               the i960.  Complex  addressing  modes  may  not  be
  3019.               worthwhile on the K-series, but they definitely are
  3020.               on the C-series.  The default is  currently  --mmccoomm--
  3021.               pplleexx--aaddddrr  for all processors except the CB and CC.
  3022.  
  3023.        --mmccooddee--aalliiggnn
  3024.  
  3025.        --mmnnoo--ccooddee--aalliiggnn
  3026.               Align code to 8-byte boundaries for faster fetching
  3027.               (or  don't bother).  Currently turned on by default
  3028.               for C-series implementations only.
  3029.  
  3030.  
  3031.  
  3032.  
  3033.  
  3034. GNU Tools                   1993/10/13                         46
  3035.  
  3036.  
  3037.  
  3038.  
  3039.  
  3040. GCC(1)                      GNU Tools                      GCC(1)
  3041.  
  3042.  
  3043.        --mmiicc--ccoommppaatt
  3044.  
  3045.        --mmiicc22..00--ccoommppaatt
  3046.  
  3047.        --mmiicc33..00--ccoommppaatt
  3048.               Enable compatibility with iC960 v2.0 or v3.0.
  3049.  
  3050.        --mmaassmm--ccoommppaatt
  3051.  
  3052.        --mmiinntteell--aassmm
  3053.               Enable compatibility with the iC960 assembler.
  3054.  
  3055.        --mmssttrriicctt--aalliiggnn
  3056.  
  3057.        --mmnnoo--ssttrriicctt--aalliiggnn
  3058.               Do not permit (do permit) unaligned accesses.
  3059.  
  3060.        --mmoolldd--aalliiggnn
  3061.               Enable structure-alignment compatibility  with  In-
  3062.               tel's  gcc release version 1.3 (based on gcc 1.37).
  3063.               Currently this is buggy in that ##pprraaggmmaa aalliiggnn 11  is
  3064.               always assumed as well, and cannot be turned off.
  3065.  
  3066.        These `--mm' options are defined for the DEC Alpha implemen-
  3067.        tations:
  3068.  
  3069.        --mmnnoo--ssoofftt--ffllooaatt
  3070.  
  3071.        --mmssoofftt--ffllooaatt
  3072.               Use (do not use) the  hardware  floating-point  in-
  3073.               structions  for  floating-point  operations.   When
  3074.               --mmssoofftt--ffllooaatt is specified, functions in `lliibbggcccc11..cc'
  3075.               will  be used to perform floating-point operations.
  3076.               Unless they are replaced by routines  that  emulate
  3077.               the  floating-point operations, or compiled in such
  3078.               a way as to call such  emulations  routines,  these
  3079.               routines will issue floating-point operations.   If
  3080.               you are compiling for an  Alpha  without  floating-
  3081.               point  operations, you must ensure that the library
  3082.               is built so as not to call them.
  3083.  
  3084.               Note that Alpha implementations  without  floating-
  3085.               point  operations  are  required  to have floating-
  3086.               point registers.
  3087.  
  3088.        --mmffpp--rreegg
  3089.  
  3090.        --mmnnoo--ffpp--rreeggss
  3091.               Generate code that uses (does not use)  the  float-
  3092.               ing-point   register   set.   --mmnnoo--ffpp--rreeggss  implies
  3093.               --mmssoofftt--ffllooaatt.  If the floating-point  register  set
  3094.               is  not used, floating point operands are passed in
  3095.               integer registers as  if  they  were  integers  and
  3096.               floating-point  results are passed in $0 instead of
  3097.  
  3098.  
  3099.  
  3100. GNU Tools                   1993/10/13                         47
  3101.  
  3102.  
  3103.  
  3104.  
  3105.  
  3106. GCC(1)                      GNU Tools                      GCC(1)
  3107.  
  3108.  
  3109.               $f0.  This is a non-standard calling  sequence,  so
  3110.               any  function with a floating-point argument or re-
  3111.               turn value called by code  compiled  with  --mmnnoo--ffpp--
  3112.               rreeggss must also be compiled with that option.
  3113.  
  3114.               A  typical  use of this option is building a kernel
  3115.               that does not use, and hence need not save and  re-
  3116.               store, any floating-point registers.
  3117.  
  3118.        These additional options are available on System V Release
  3119.        4 for compatibility with other compilers on those systems:
  3120.  
  3121.        --GG     On  SVr4  systems, ggcccc accepts the option `--GG' (and
  3122.               passes it to the system linker), for  compatibility
  3123.               with  other compilers.  However, we suggest you use
  3124.               `--ssyymmbboolliicc' or `--sshhaarreedd' as appropriate, instead of
  3125.               supplying linker options on the ggcccc command line.
  3126.  
  3127.        --QQyy    Identify the versions of each tool used by the com-
  3128.               piler, in a ..iiddeenntt assembler directive in the  out-
  3129.               put.
  3130.  
  3131.        --QQnn    Refrain from adding ..iiddeenntt directives to the output
  3132.               file (this is the default).
  3133.  
  3134.        --YYPP,,_d_i_r_s
  3135.               Search the directories _d_i_r_s, and no others, for li-
  3136.               braries  specified with `--ll'.  You can separate di-
  3137.               rectory entries  in  _d_i_r_s  from  one  another  with
  3138.               colons.
  3139.  
  3140.        --YYmm,,_d_i_r
  3141.               Look in the directory _d_i_r to find the M4 preproces-
  3142.               sor.  The assembler uses this option.
  3143.  
  3144. CCOODDEE GGEENNEERRAATTIIOONN OOPPTTIIOONNSS
  3145.        These machine-independent options  control  the  interface
  3146.        conventions used in code generation.
  3147.  
  3148.        Most  of  them  begin  with `-f'.  These options have both
  3149.        positive and negative forms; the negative form of  `--ffffoooo'
  3150.        would  be `--ffnnoo--ffoooo'.  In the table below, only one of the
  3151.        forms is listed--the one which is not  the  default.   You
  3152.        can  figure out the other form by either removing `nnoo--' or
  3153.        adding it.
  3154.  
  3155.        --ffnnoonnnnuullll--oobbjjeeccttss
  3156.               Assume that objects reached through references  are
  3157.               not null (C++ only).
  3158.  
  3159.               Normally,  GNU  C++  makes conservative assumptions
  3160.               about objects reached through references.  For  ex-
  3161.               ample,  the  compiler must check that aa is not null
  3162.               in code like the following:
  3163.  
  3164.  
  3165.  
  3166. GNU Tools                   1993/10/13                         48
  3167.  
  3168.  
  3169.  
  3170.  
  3171.  
  3172. GCC(1)                      GNU Tools                      GCC(1)
  3173.  
  3174.  
  3175.               obj &a = g (); a.f (2);
  3176.  
  3177.               Checking that references of this sort have non-null
  3178.               values  requires extra code, however, and it is un-
  3179.               necessary  for  many   programs.    You   can   use
  3180.               `--ffnnoonnnnuullll--oobbjjeeccttss' to omit the checks for null, if
  3181.               your program doesn't require checking.
  3182.  
  3183.        --ffppcccc--ssttrruucctt--rreettuurrnn
  3184.               Use the same convention for  returning  ssttrruucctt  and
  3185.               uunniioonn  values  that is used by the usual C compiler
  3186.               on your system.  This convention is less  efficient
  3187.               for small structures, and on many machines it fails
  3188.               to be reentrant; but it has the advantage of allow-
  3189.               ing  intercallability between GCC-compiled code and
  3190.               PCC-compiled code.
  3191.  
  3192.        --ffrreegg--ssttrruucctt--rreettuurrnn
  3193.               Use the convention that ssttrruucctt and uunniioonn values are
  3194.               returned  in registers when possible.  This is more
  3195.               efficient     for     small     structures     than
  3196.               --ffppcccc--ssttrruucctt--rreettuurrnn.
  3197.  
  3198.               If  you  specify  neither  --ffppcccc--ssttrruucctt--rreettuurrnn  nor
  3199.               --ffrreegg--ssttrruucctt--rreettuurrnn, GNU CC defaults  to  whichever
  3200.               convention is standard for the target.  If there is
  3201.               no  standard  convention,  GNU   CC   defaults   to
  3202.               --ffppcccc--ssttrruucctt--rreettuurrnn.
  3203.  
  3204.        --ffsshhoorrtt--eennuummss
  3205.               Allocate  to  an eennuumm type only as many bytes as it
  3206.               needs for the declared range  of  possible  values.
  3207.               Specifically,  the  eennuumm type will be equivalent to
  3208.               the smallest integer type which has enough room.
  3209.  
  3210.        --ffsshhoorrtt--ddoouubbllee
  3211.               Use the same size for ddoouubbllee as for ffllooaatt .
  3212.  
  3213.        --ffsshhaarreedd--ddaattaa
  3214.               Requests that the data and non-ccoonnsstt  variables  of
  3215.               this compilation be shared data rather than private
  3216.               data.  The distinction makes sense only on  certain
  3217.               operating  systems, where shared data is shared be-
  3218.               tween processes running  the  same  program,  while
  3219.               private data exists in one copy per process.
  3220.  
  3221.        --ffnnoo--ccoommmmoonn
  3222.               Allocate even uninitialized global variables in the
  3223.               bss section of the object file, rather than  gener-
  3224.               ating  them  as common blocks.  This has the effect
  3225.               that if the same variable is declared (without  eexx--
  3226.               tteerrnn)  in  two different compilations, you will get
  3227.               an error when you link them.  The only reason  this
  3228.               might  be  useful is if you wish to verify that the
  3229.  
  3230.  
  3231.  
  3232. GNU Tools                   1993/10/13                         49
  3233.  
  3234.  
  3235.  
  3236.  
  3237.  
  3238. GCC(1)                      GNU Tools                      GCC(1)
  3239.  
  3240.  
  3241.               program will work on  other  systems  which  always
  3242.               work this way.
  3243.  
  3244.        --ffnnoo--iiddeenntt
  3245.               Ignore the `##iiddeenntt' directive.
  3246.  
  3247.        --ffnnoo--ggnnuu--lliinnkkeerr
  3248.               Do  not  output global initializations (such as C++
  3249.               constructors and destructors) in the form  used  by
  3250.               the  GNU linker (on systems where the GNU linker is
  3251.               the standard method of handling  them).   Use  this
  3252.               option when you want to use a non-GNU linker, which
  3253.               also requires using the ccoolllleecctt22  program  to  make
  3254.               sure  the  system  linker includes constructors and
  3255.               destructors.  (ccoolllleecctt22 is included in the  GNU  CC
  3256.               distribution.)   For  systems  which  _m_u_s_t use ccooll--
  3257.               lleecctt22, the compiler driver ggcccc is configured to  do
  3258.               this automatically.
  3259.  
  3260.        --ffiinnhhiibbiitt--ssiizzee--ddiirreeccttiivvee
  3261.               Don't  output  a ..ssiizzee assembler directive, or any-
  3262.               thing else that would cause trouble if the function
  3263.               is  split  in  the  middle,  and the two halves are
  3264.               placed at locations far apart in memory.  This  op-
  3265.               tion  is  used  when  compiling  `ccrrttssttuuffff..cc';  you
  3266.               should not need to use it for anything else.
  3267.  
  3268.        --ffvveerrbboossee--aassmm
  3269.               Put extra commentary information in  the  generated
  3270.               assembly  code  to make it more readable.  This op-
  3271.               tion is generally only of use to those who actually
  3272.               need  to  read the generated assembly code (perhaps
  3273.               while debugging the compiler itself).
  3274.  
  3275.        --ffvvoollaattiillee
  3276.               Consider all memory references through pointers  to
  3277.               be volatile.
  3278.  
  3279.        --ffvvoollaattiillee--gglloobbaall
  3280.               Consider all memory references to extern and global
  3281.               data items to be volatile.
  3282.  
  3283.        --ffppiicc  If supported for the target machines, generate  po-
  3284.               sition-independent  code,  suitable  for  use  in a
  3285.               shared library.
  3286.  
  3287.        --ffPPIICC  If supported for the target machine, emit position-
  3288.               independent  code,  suitable  for  dynamic linking,
  3289.               even if branches need large displacements.
  3290.  
  3291.        --ffffiixxeedd--_r_e_g
  3292.               Treat the register named _r_e_g as a  fixed  register;
  3293.               generated  code  should  never  refer to it (except
  3294.               perhaps as a stack pointer,  frame  pointer  or  in
  3295.  
  3296.  
  3297.  
  3298. GNU Tools                   1993/10/13                         50
  3299.  
  3300.  
  3301.  
  3302.  
  3303.  
  3304. GCC(1)                      GNU Tools                      GCC(1)
  3305.  
  3306.  
  3307.               some other fixed role).
  3308.  
  3309.               _r_e_g  must  be the name of a register.  The register
  3310.               names accepted are machine-specific and are defined
  3311.               in the RREEGGIISSTTEERR__NNAAMMEESS macro in the machine descrip-
  3312.               tion macro file.
  3313.  
  3314.               This flag does not have a negative form, because it
  3315.               specifies a three-way choice.
  3316.  
  3317.        --ffccaallll--uusseedd--_r_e_g
  3318.               Treat the register named _r_e_g as an allocatable reg-
  3319.               ister that is clobbered by function calls.  It  may
  3320.               be  allocated  for temporaries or variables that do
  3321.               not live across a call.   Functions  compiled  this
  3322.               way will not save and restore the register _r_e_g.
  3323.  
  3324.               Use  of  this  flag for a register that has a fixed
  3325.               pervasive role in the  machine's  execution  model,
  3326.               such  as  the  stack pointer or frame pointer, will
  3327.               produce disastrous results.
  3328.  
  3329.               This flag does not have a negative form, because it
  3330.               specifies a three-way choice.
  3331.  
  3332.        --ffccaallll--ssaavveedd--_r_e_g
  3333.               Treat the register named _r_e_g as an allocatable reg-
  3334.               ister saved by functions.  It may be allocated even
  3335.               for  temporaries  or  variables  that live across a
  3336.               call.  Functions compiled this way  will  save  and
  3337.               restore the register _r_e_g if they use it.
  3338.  
  3339.               Use  of  this  flag for a register that has a fixed
  3340.               pervasive role in the  machine's  execution  model,
  3341.               such  as  the  stack pointer or frame pointer, will
  3342.               produce disastrous results.
  3343.  
  3344.               A different sort of disaster will result  from  the
  3345.               use  of  this flag for a register in which function
  3346.               values may be returned.
  3347.  
  3348.               This flag does not have a negative form, because it
  3349.               specifies a three-way choice.
  3350.  
  3351. PPRRAAGGMMAASS
  3352.        Two  `##pprraaggmmaa'  directives  are  supported for GNU C++, to
  3353.        permit using the same header file for two purposes:  as  a
  3354.        definition  of  interfaces to a given object class, and as
  3355.        the full definition of the contents of that object  class.
  3356.  
  3357.        ##pprraaggmmaa iinntteerrffaaccee
  3358.               (C++  only.)   Use  this  directive in header files
  3359.               that define object classes, to save space  in  most
  3360.               of  the  object files that use those classes.  Nor-
  3361.  
  3362.  
  3363.  
  3364. GNU Tools                   1993/10/13                         51
  3365.  
  3366.  
  3367.  
  3368.  
  3369.  
  3370. GCC(1)                      GNU Tools                      GCC(1)
  3371.  
  3372.  
  3373.               mally, local copies of certain information  (backup
  3374.               copies of inline member functions, debugging infor-
  3375.               mation, and the internal tables that implement vir-
  3376.               tual  functions)  must  be kept in each object file
  3377.               that includes class definitions.  You can use  this
  3378.               pragma  to  avoid  such duplication.  When a header
  3379.               file containing `##pprraaggmmaa iinntteerrffaaccee' is included  in
  3380.               a  compilation, this auxiliary information will not
  3381.               be generated (unless the main input source file it-
  3382.               self  uses `##pprraaggmmaa iimmpplleemmeennttaattiioonn').  Instead, the
  3383.               object files will contain references to be resolved
  3384.               at link time.
  3385.  
  3386.        ##pprraaggmmaa iimmpplleemmeennttaattiioonn
  3387.  
  3388.        ##pprraaggmmaa iimmpplleemmeennttaattiioonn ""_o_b_j_e_c_t_s..hh""
  3389.               (C++  only.)  Use this pragma in a main input file,
  3390.               when you want  full  output  from  included  header
  3391.               files  to be generated (and made globally visible).
  3392.               The included  header  file,  in  turn,  should  use
  3393.               `##pprraaggmmaa  iinntteerrffaaccee'.  Backup copies of inline mem-
  3394.               ber functions, debugging information, and  the  in-
  3395.               ternal  tables  used to implement virtual functions
  3396.               are all generated in implementation files.
  3397.  
  3398.               If you use `##pprraaggmmaa iimmpplleemmeennttaattiioonn' with  no  argu-
  3399.               ment,  it  applies to an include file with the same
  3400.               basename as  your  source  file;  for  example,  in
  3401.               `aallllccllaassss..cccc',  `##pprraaggmmaa  iimmpplleemmeennttaattiioonn' by itself
  3402.               is   equivalent    to    `##pprraaggmmaa    iimmpplleemmeennttaattiioonn
  3403.               ""aallllccllaassss..hh""'.  Use the string argument if you want
  3404.               a single implementation file to include  code  from
  3405.               multiple header files.
  3406.  
  3407.               There  is no way to split up the contents of a sin-
  3408.               gle header file into multiple implementation files.
  3409.  
  3410. FFIILLEESS
  3411.        file.c             C source file
  3412.        file.h             C header (preprocessor) file
  3413.        file.i             preprocessed C source file
  3414.        file.C             C++ source file
  3415.        file.cc            C++ source file
  3416.        file.cxx           C++ source file
  3417.        file.m             Objective-C source file
  3418.        file.s             assembly language file
  3419.        file.o             object file
  3420.        a.out              link edited output
  3421.        _T_M_P_D_I_R/cc*         temporary files
  3422.        _L_I_B_D_I_R/cpp         preprocessor
  3423.        _L_I_B_D_I_R/cc1         compiler for C
  3424.        _L_I_B_D_I_R/cc1plus     compiler for C++
  3425.        _L_I_B_D_I_R/collect     linker front end needed on some machines
  3426.        _L_I_B_D_I_R/libgcc.a    GCC subroutine library
  3427.  
  3428.  
  3429.  
  3430. GNU Tools                   1993/10/13                         52
  3431.  
  3432.  
  3433.  
  3434.  
  3435.  
  3436. GCC(1)                      GNU Tools                      GCC(1)
  3437.  
  3438.  
  3439.        /lib/crt[01n].o    start-up routine
  3440.        _L_I_B_D_I_R/ccrt0       additional start-up routine for C++
  3441.        /lib/libc.a        standard C library, see
  3442.        _i_n_t_r_o(3)
  3443.        /usr/include       standard directory for ##iinncclluuddee files
  3444.        _L_I_B_D_I_R/include     standard gcc directory for ##iinncclluuddee files
  3445.        _L_I_B_D_I_R/g++-include additional g++ directory for ##iinncclluuddee
  3446.  
  3447.        _L_I_B_D_I_R is usually //uussrr//llooccaall//lliibb//_m_a_c_h_i_n_e/_v_e_r_s_i_o_n.
  3448.        _T_M_P_D_I_R comes from the environment variable TTMMPPDDIIRR (default
  3449.        //uussrr//ttmmpp if available, else //ttmmpp).
  3450.  
  3451. SSEEEE AALLSSOO
  3452.        cpp(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1).
  3453.        `ggcccc', `ccpppp', `aass', `lldd', and `ggddbb' entries in iinnffoo.
  3454.        _U_s_i_n_g _a_n_d _P_o_r_t_i_n_g _G_N_U _C_C _(_f_o_r  _v_e_r_s_i_o_n  _2_._0_),  Richard  M.
  3455.        Stallman;  _T_h_e _C _P_r_e_p_r_o_c_e_s_s_o_r, Richard M. Stallman; _D_e_b_u_g_-
  3456.        _g_i_n_g _w_i_t_h _G_D_B_: _t_h_e _G_N_U _S_o_u_r_c_e_-_L_e_v_e_l _D_e_b_u_g_g_e_r,  Richard  M.
  3457.        Stallman and Roland H. Pesch; _U_s_i_n_g _a_s_: _t_h_e _G_N_U _A_s_s_e_m_b_l_e_r,
  3458.        Dean Elsner, Jay Fenlason & friends; _l_d_: _t_h_e  _G_N_U  _l_i_n_k_e_r,
  3459.        Steve Chamberlain and Roland Pesch.
  3460.  
  3461. BBUUGGSS
  3462.        For instructions on reporting bugs, see the GCC manual.
  3463.  
  3464. CCOOPPYYIINNGG
  3465.        Copyright  1991, 1992, 1993 Free Software Foundation, Inc.
  3466.  
  3467.        Permission is granted  to  make  and  distribute  verbatim
  3468.        copies  of  this  manual provided the copyright notice and
  3469.        this permission notice are preserved on all copies.
  3470.  
  3471.        Permission is granted to copy and distribute modified ver-
  3472.        sions  of  this  manual  under the conditions for verbatim
  3473.        copying, provided that the entire resulting  derived  work
  3474.        is  distributed  under  the  terms  of a permission notice
  3475.        identical to this one.
  3476.  
  3477.        Permission is granted to copy and distribute  translations
  3478.        of this manual into another language, under the above con-
  3479.        ditions for modified versions, except that this permission
  3480.        notice  may  be  included  in translations approved by the
  3481.        Free Software Foundation instead of in  the  original  En-
  3482.        glish.
  3483.  
  3484. AAUUTTHHOORRSS
  3485.        See the GNU CC Manual for the contributors to GNU CC.
  3486.  
  3487.  
  3488.  
  3489.  
  3490.  
  3491.  
  3492.  
  3493.  
  3494.  
  3495.  
  3496. GNU Tools                   1993/10/13                         53
  3497.  
  3498.  
  3499.